[ckan-ssg][m] - fix build

This commit is contained in:
Luccas Mateus de Medeiros Gomes
2023-05-23 20:23:26 -03:00
parent 5a6cf37c9e
commit 92ebac4a50
20 changed files with 281 additions and 43 deletions

View File

@@ -0,0 +1,18 @@
import { AppProps } from 'next/app';
import Head from 'next/head';
import './styles.css'
function CustomApp({ Component, pageProps }: AppProps) {
return (
<>
<Head>
<title>Welcome to ckan-example!</title>
</Head>
<main className="app">
<Component {...pageProps} />
</main>
</>
);
}
export default CustomApp;