Skip to main content
Module

x/jotai/website/gatsby-ssr.js

👻 Primitive and flexible state management for React
Go to Latest
File
import React from 'react'import { Provider } from 'jotai'
import { textAtom, countAtom } from './src/atoms'
export const wrapRootElement = ({ element }) => ( <Provider initialValues={[ [textAtom, 'hello'], [countAtom, 0], ]}> {element} </Provider>)