import { Col } from "antd"; import { ReactNode } from "react"; interface RightProps { children?: ReactNode; hasLeft?: boolean; } const Right = (props: RightProps) => { const { children, hasLeft = true } = props; return (