diff options
Diffstat (limited to 'src/containers/BsuFantomSection/BsuFantomSection.tsx')
| -rw-r--r-- | src/containers/BsuFantomSection/BsuFantomSection.tsx | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/src/containers/BsuFantomSection/BsuFantomSection.tsx b/src/containers/BsuFantomSection/BsuFantomSection.tsx new file mode 100644 index 0000000..119b2ae --- /dev/null +++ b/src/containers/BsuFantomSection/BsuFantomSection.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import { ContentSection } from 'react-benzin'; +import { Link } from '@material-ui/core'; + +const BsuFantomSection: React.FC = () => { + +  return ( +    <ContentSection sectionName="bsu-fantom" level={1}> +      Schedule your offline <Link href="https://edufpmi.bsu.by">EDUFPMI</Link> conference attendance +    </ContentSection> +  ); +}; + +export default BsuFantomSection; | 
