export interface SideBarType {
    show: boolean;
    disapear: boolean;
    handleShow: () => void;
    handleClose: () => void;
}
