blob: 119b2aeff8bff20f0ccfe88e8887b4ac992a18cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
|