export type ChildrenType = JSX.Element | Array; function Container(props: { children?: ChildrenType, ignore?: boolean }) { if (props.ignore) return <>{props.children}; return (
{props.children}
); } export default Container;