mirror of https://gitlab.com/ecentrics/concordia
Apostolos Fanakis
4 years ago
4 changed files with 26 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||
import React, { |
|||
memo, useMemo, |
|||
} from 'react'; |
|||
import { Container } from 'semantic-ui-react'; |
|||
|
|||
const About = () => useMemo(() => ( |
|||
<Container id="about-container" textAlign="center"> |
|||
TODO |
|||
</Container> |
|||
), []); |
|||
|
|||
export default memo(About); |
Loading…
Reference in new issue