Skip to content
Snippets Groups Projects
CompetitionManager.tsx 256 B
Newer Older
  • Learn to ignore specific revisions
  • import { Typography } from '@material-ui/core'
    import React from 'react'
    
    const CompetitionManager: React.FC = (props) => {
      return (
        <Typography variant="h1" noWrap>
          Tävlingshanterare
        </Typography>
      )
    }
    
    export default CompetitionManager