blob: c7e27852e9db0e477f916dea115a17a52600e858 (
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 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;
|