header.tsx 272 B

1234567891011121314
  1. import {t} from 'sentry/locale';
  2. import {Grid, GridCell} from './styles';
  3. const Header = () => (
  4. <Grid>
  5. <GridCell />
  6. <GridCell>{t('Id')}</GridCell>
  7. <GridCell>{t('Name')}</GridCell>
  8. <GridCell>{t('Label')}</GridCell>
  9. </Grid>
  10. );
  11. export default Header;