rsnext/examples/with-neo4j/pages/_app.js
Nikolas Santis a5917317f0
[ EXAMPLES ] Added with-neo4j (#16559)
Adding a example with **Neo4j** native graph database.

- with-neo4j: basic api routes with neo4j driver.

:)
2020-11-24 18:35:51 +00:00

12 lines
233 B
JavaScript

import globalStyles from '../styles/global'
export default function MyApp({ Component, pageProps }) {
return (
<>
<Component {...pageProps} />
<style jsx global>
{globalStyles}
</style>
</>
)
}