TabStrip
Browser-style tabs for the top bar's second row. Each tab is a remembered location rather than a document; a pinned tab shrinks to its glyph and shows no close control, and middle-click closes.
Tab strip
Browser-style tabs in the bar's second row. A tab is a remembered location, not a document: there is one router, so activating a tab is a push. A pinned tab shrinks to its glyph and shows no close control. Middle-click closes.
<TabStrip label="Open tabs">
<TabStripItem isActive isPinned onActivate={() => activate(tab.id)}>
{tab.title}
</TabStripItem>
<TabStripAdd onPress={openTab} />
</TabStrip>The active tab is connected to the surface below it.