(examples)

Collapsible panels are useful when you want to hide content until it is needed.
source
index.html
README.md
styles.css
TicTacToe.ts
1
1<PanelGroup direction="horizontal">
2 <SideTabBar />
3 <Panel collapsible={true} collapsedSize={35} minSize={10}>
4 <SourceBrowser />
5 </Panel>
6 <ResizeHandle />
7 <Panel>
8 <SourceViewer />
9 </Panel>
10</PanelGroup>