diff options
author | eug-vs <eug-vs@keemail.me> | 2020-11-14 22:28:45 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-11-14 22:28:45 +0300 |
commit | e2c16ba26decc7b3dcc84a188bdbe0583f492841 (patch) | |
tree | 886bab5921c054454cc710067765a3a99617e06b /src/containers/BsuFantomSection/BsuFantomSection.tsx | |
parent | 7d82c14be8ec1e191d845687960f8a50431750e9 (diff) | |
download | famcs-kit-e2c16ba26decc7b3dcc84a188bdbe0583f492841.tar.gz |
feat: create blank sections
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; |