Skip to main content
Module

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

👻 Primitive and flexible state management for React
Latest
File
export const Main = ({ children, ...rest }) => { return ( <main className="p-6 sm:p-8 lg:mt-8 lg:max-w-5xl lg:flex-shrink xl:p-16" {...rest}> {children} </main> );};