mirror of
https://github.com/supabase/supabase.git
synced 2026-06-20 23:06:06 +08:00
5 lines
195 B
JavaScript
5 lines
195 B
JavaScript
export default function WidthWrapper({ isFullwidth, children }) {
|
|
if (!isFullwidth) return <div className="section container p-b-none p-t-none">{children}</div>
|
|
else return <>{children}</>
|
|
}
|