New to KendoReactLearn about KendoReact Free.

BottomNavigation

Represents the KendoReact BottomNavigation component. Used to switch between primary destinations in an application.

A Functional Component.

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'));
NameTypeDefaultDescription

props

BottomNavigationProps intersected with RefAttributes<"null" | BottomNavigationHandle>

The props of the BottomNavigation component.

Not finding the help you need?
Contact Support