import LeftContentBlock from "./LeftContentBlock";
import RightContentBlock from "./RightContentBlock";
import { ContentBlockProps } from "./types";
const ContentBlock = (props: ContentBlockProps) => {
if (props.type === "left") return ;
if (props.type === "right") return ;
return null;
};
export default ContentBlock;