rsnext/examples/with-react-relay-network-modern/pages/_app.js

7 lines
243 B
JavaScript
Raw Normal View History

import { createEnvironment } from '../lib/createEnvironment'
export default function App({ Component, pageProps }) {
const environment = createEnvironment(pageProps.records)
return <Component {...pageProps} environment={environment} />
}