Skip to main content
Module

x/jotai/website/src/components/wrapper.js

👻 Primitive and flexible state management for React
Go to Latest
File
export const Wrapper = ({ children, ...rest }) => { return ( <div className="relative flex flex-col lg:mx-auto lg:max-w-[1920px] lg:flex-row lg:justify-around" {...rest} > {children} </div> );};