rsnext/examples/with-neo4j/pages/_app.js

13 lines
233 B
JavaScript
Raw Normal View History

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