Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
230 Bytes
import React from 'react';
import { Container, Line, GithubLogo } from './styles';
const Footer: React.FC = () => {
return (
<Container>
<Line />
<GithubLogo />
</Container>
);
};
export default Footer;