Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
common
/
resources
/
client
/
ui
/
layout
/
Editing: dashboard-content.tsx
import {cloneElement, ReactElement} from 'react'; import clsx from 'clsx'; interface DashboardContentProps { children: ReactElement<{className: string}>; } export function DashboardContent({children}: DashboardContentProps) { return cloneElement(children, { className: clsx( children.props.className, 'dashboard-grid-content overflow-y-auto stable-scrollbar' ), }); }
Save
Cancel