Initial commit

This commit is contained in:
vslg
2023-07-31 13:53:07 -03:00
commit 13c83c5c49
18 changed files with 5139 additions and 0 deletions

16
src/layout/Footer.jsx Normal file
View File

@@ -0,0 +1,16 @@
import { Layout } from "antd";
const { Footer } = Layout;
const SFooter = () => {
return (
<Footer
style={{
textAlign: 'center',
}}
>
Jun © 2023
</Footer>
);
};
export default SFooter;