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

10 lines
182 B
JavaScript
Raw Normal View History

import { RecoilRoot } from 'recoil'
export default function MyApp({ Component, pageProps }) {
return (
<RecoilRoot>
<Component {...pageProps} />
</RecoilRoot>
)
}