Without a value, it detects from the children index. Note that it might cause errors on re-renders, it's not encouraged if the tabs might change.
import { Tab, Tabs } from 'fumadocs-ui/components/tabs';<Tabs items={['Javascript', 'Rust']}> <Tab>Javascript is weird</Tab> <Tab>Rust is fast</Tab></Tabs>
<Tabs items={['Javascript', 'Rust', 'C++']}> <Tab value="Javascript">Javascript is weird</Tab> <Tab value="Rust">Rust is fast</Tab> <Tab id="tab-cpp" value="C++"> `Hello World` </Tab></Tabs>
You can add the hash #tab-cpp to your URL and reload, the C++ tab will be activated.
Javascript is weird
Additionally, the updateAnchor property can be set to true in the Tabs component
to automatically update the URL hash whenever time a new tab is selected:
<Tabs items={['Javascript', 'Rust', 'C++']} updateAnchor> <Tab id="tab-js" value="Javascript"> Javascript is weird </Tab> <Tab id="tab-rs" value="Rust"> Rust is fast </Tab> <Tab id="tab-cpp" value="C++"> `Hello World` </Tab></Tabs>