import React, { Fragment, FunctionComponent as FC } from "react"; import { Transition } from "@headlessui/react"; import classNames from "classnames"; type LeftColumnProps = { children: React.ReactNode; openLeftBar?: boolean; widthElement?: number; className?: string; } & Omit, "">; const LeftColumn: React.FC = ({ className, children, widthElement = 0, openLeftBar = false, }): JSX.Element => { const mdScreen = 768; return (
{children}
); }; LeftColumn.displayName = "LeftColumn"; export default LeftColumn;