import React, { FC, PropsWithChildren } from "react"; interface Props extends PropsWithChildren { bgColor?: string; border?: 'l' | 'r' } export const SideBar: FC = ({ bgColor, border, children }) => { return (
{children}
) }