* [examples/openspending][xl]: implement dataset page v0.1, add pagination to the datasets grid * [examples/openspending][m] - fix build + add tests --------- Co-authored-by: Luccas Mateus de Medeiros Gomes <luccasmmg@gmail.com>
17 lines
333 B
TypeScript
17 lines
333 B
TypeScript
import { AppProps } from 'next/app';
|
|
import './styles.css';
|
|
import { NextSeo } from 'next-seo';
|
|
|
|
function CustomApp({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<>
|
|
<NextSeo title="OpenSpending" />
|
|
<main className="app">
|
|
<Component {...pageProps} />
|
|
</main>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default CustomApp;
|