import { Panel, PanelBody, PanelRow } from '@wordpress/components'; import { ReactNode } from 'react'; function ScrollableContainer( { children }: { children: ReactNode } ) { return (
{ children }
); } function Placeholder( { height = 200 } ) { return
; } const PanelExample = () => ( ); export default PanelExample;