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