import type { FC, PropsWithChildren } from 'react' import * as React from 'react' type SidebarProps = PropsWithChildren const Sidebar: FC = ({ children }) => { return ( ) } export default React.memo(Sidebar)