integration of next.js

This commit is contained in:
2023-04-04 23:06:47 -03:00
parent 4a2364cb7b
commit e5c37b9449
21 changed files with 68 additions and 396 deletions

7
pages/_app.js Normal file
View File

@@ -0,0 +1,7 @@
/* eslint-disable react/prop-types */
import React from 'react';
import './index.css';
export default function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
}