SGPT/src/shared/components/Footer.tsx

8 lines
147 B

2 years ago
type Props = {};
const Footer = (props: Props) => {
return <div className="container mx-auto bg-white">Footer</div>;
};
export default Footer;