Files
react-test/docs/data/material/components/bottom-navigation/SimpleBottomNavigation.tsx.preview

11 lines
341 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<BottomNavigation
showLabels
value={value}
onChange={(event, newValue) => {
setValue(newValue);
}}
>
<BottomNavigationAction label="Recents" icon={<RestoreIcon />} />
<BottomNavigationAction label="Favorites" icon={<FavoriteIcon />} />
<BottomNavigationAction label="Nearby" icon={<LocationOnIcon />} />
</BottomNavigation>