()
| 7 | import './MainLayout.css' |
| 8 | |
| 9 | export function MainLayout(): React.JSX.Element { |
| 10 | return ( |
| 11 | <Flex className="main-layout" vertical> |
| 12 | <TitleBar /> |
| 13 | <Flex className="main-layout-body" flex={1}> |
| 14 | <ActivityBar /> |
| 15 | <Sidebar /> |
| 16 | <EditorArea /> |
| 17 | </Flex> |
| 18 | </Flex> |
| 19 | ) |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected