RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/components/Sidebar/Sidebar.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Sidebar as FuselageSidebar } from '@rocket.chat/fuselage';
import type { ComponentPropsWithoutRef } from 'react';
import React from 'react';

type SidebarProps = ComponentPropsWithoutRef<typeof FuselageSidebar>;

const Sidebar = (props: SidebarProps) => <FuselageSidebar {...props} role='navigation' display='flex' flexDirection='column' h='full' />;

export default Sidebar;