import React from 'react'; | |
import { Container, Line, GithubLogo } from './styles'; | |
const Footer: React.FC = () => { | |
return ( | |
<Container> | |
<Line /> | |
<GithubLogo /> | |
</Container> | |
); | |
}; | |
export default Footer; | |
import React from 'react'; | |
import { Container, Line, GithubLogo } from './styles'; | |
const Footer: React.FC = () => { | |
return ( | |
<Container> | |
<Line /> | |
<GithubLogo /> | |
</Container> | |
); | |
}; | |
export default Footer; | |