mirror of
https://github.com/facebook/docusaurus.git
synced 2025-08-04 01:09:20 +02:00
feat(theme-classic): make first tab the default tab (#5647)
* Initial work * Little doc fix * Doc fix
This commit is contained in:
parent
7b64e85dc3
commit
d6b4eeb358
7 changed files with 27 additions and 30 deletions
|
@ -44,7 +44,8 @@ function TabsComponent(props: Props): JSX.Element {
|
|||
});
|
||||
const defaultValue =
|
||||
defaultValueProp ??
|
||||
children.find((child) => child.props.default)?.props.value;
|
||||
children.find((child) => child.props.default)?.props.value ??
|
||||
children[0]?.props.value;
|
||||
|
||||
const {tabGroupChoices, setTabGroupChoices} = useUserPreferencesContext();
|
||||
const [selectedValue, setSelectedValue] = useState(defaultValue);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue