More changes and UI Components: Button

This commit is contained in:
Belen Curcio
2020-09-23 15:19:36 -03:00
parent c220cd6652
commit 15b5bec0c6
12 changed files with 7636 additions and 5 deletions

9
pages/_app.tsx Normal file
View File

@@ -0,0 +1,9 @@
import "@styles/global.css";
export default function MyApp({ Component, pageProps }) {
return (
<>
<Component {...pageProps} />
</>
);
}