client: refactor

This commit is contained in:
Adorian Doran
2026-04-18 15:54:10 +03:00
parent e624c204ff
commit e2c79ff047

View File

@@ -9,12 +9,12 @@ interface PropertySheetParams {
wideLayoutBreakpoint?: number;
}
export function PropertySheet({ className, children, wideLayoutBreakpoint }: PropertySheetParams) {
export function PropertySheet({className, children, wideLayoutBreakpoint}: PropertySheetParams) {
return <FluidWrapper
className="property-sheet-container"
className={clsx("property-sheet-container", className)}
breakpoints={{narrow: 0, wide: wideLayoutBreakpoint || 600}}>
<div className={clsx("property-sheet", className)}>
<div className="property-sheet">
{children}
</div>
</FluidWrapper>