interface IWidget { label?: string; content?: React.ReactNode; } const ExportSettingLayoutWidget = ({ label, content }: IWidget) => { return (
{label} {content}
); }; export default ExportSettingLayoutWidget;