[@portaljs/components][xl] - @portaljs/ckan package
+ Accompaning example using said package + Removed the "example" from all the examples names
This commit is contained in:
18
examples/ckan-ssg/pages/_app.tsx
Normal file
18
examples/ckan-ssg/pages/_app.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user