New to KendoReact? Learn about KendoReact Free.
BottomNavigation
Represents the KendoReact BottomNavigation component. Used to switch between primary destinations in an application.
jsx
const items = [
{ text: 'Photos', icon: 'photo', selected: true },
{ text: 'Albums', icon: 'folder' },
{ text: 'Search', icon: 'search' },
{ text: 'More', icon: 'more-horizontal' },
];
const App = () => {
return (
<BottomNavigation items={items} />
);
};
ReactDOM.render(<App />, document.querySelector('my-app'));
Name | Type | Default | Description |
---|---|---|---|
props |
|
The props of the BottomNavigation component. |