import React from 'react'; export function Panel({ children, header, footer, }: { children: React.ReactNode; header?: React.ReactNode; footer?: React.ReactNode; }) { return (
{header &&
{header}
}
{children}
{footer &&
{footer}
}
); }