Forked from
KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
311 commits behind the upstream repository.
-
Bereczki Sandor authored
Footer should be always fixed to the bottom, though you may need to use margins at the bottom element.
Bereczki Sandor authoredFooter should be always fixed to the bottom, though you may need to use margins at the bottom element.
Footer.js 302 B
import React from 'react';
import { Container, Segment } from 'semantic-ui-react';
const Footer = () => (
<Segment inverted vertical textAlign='center' >
<Container>
<p textalign='center' >Created by DevTeam © 2017-2018.</p>
</Container>
</Segment>
);
export default Footer;