diff options
| author | Alberto-Duarte <alberto@albertoduarte.com> | 2023-04-21 13:51:46 +0100 |
|---|---|---|
| committer | Alberto-Duarte <alberto@albertoduarte.com> | 2023-04-21 13:51:46 +0100 |
| commit | 1b3a300173c4531bebf3b88966a1fec64d276440 (patch) | |
| tree | 6c8f9f0a745eadd3615a50bbf47e14d1233cb80c /src/pages/_app.tsx | |
First commit
Diffstat (limited to 'src/pages/_app.tsx')
| -rw-r--r-- | src/pages/_app.tsx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx new file mode 100644 index 0000000..e57ed44 --- /dev/null +++ b/src/pages/_app.tsx @@ -0,0 +1,6 @@ +import '@prueba/styles/globals.css' +import type { AppProps } from 'next/app' + +export default function App({ Component, pageProps }: AppProps) { + return <Component {...pageProps} /> +} |