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