First, install the package
yarn add @superrb/react-addons
Add the context wrapper to your layout to ensure you can use all contexts you wish to use.
import { ContextWrapper } from '@superrb/react-addons/components'
export const Layout = ({ children }) => (
<ContextWrapper>
{children}
</ContextWrapper>
)