import React, { PropsWithChildren } from "react"; type ContentFrameProps = { tabs?: boolean; }; const ContentFrame: React.FC> = ({ tabs, children, }) => { return tabs ? (
{children}
) : (
{children}
); }; export default ContentFrame;