* [example][m] - start of a simple-example * Empty-Commit * [simple-example][sm] - change from repos.json to datasets.json * [example][m] - changed styling and added octokit * [build][sm] - fix build
20 lines
396 B
TypeScript
20 lines
396 B
TypeScript
import { AppProps } from 'next/app';
|
|
import Head from 'next/head';
|
|
import './styles.css';
|
|
import "../styles/global.css";
|
|
|
|
function CustomApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Welcome to simple-example!</title>
|
|
</Head>
|
|
<main className="app">
|
|
<Component {...pageProps} />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default CustomApp;
|