DrawerNavigation
Component
Represents the KendoReact Drawer component.
Definition
Package:@progress/kendo-react-layout
Syntax:
jsx
const App = () => {
const [expanded, setExpanded] = React.useState(true);
const handleClick = () => setExpanded(prevState => !prevState);
return (
<Drawer expanded={expanded} position='start' mode='push'>
<DrawerNavigation>
<ul className="k-drawer-items">
<li className="k-drawer-item k-selected">
<span className="k-item-text">Home</span>
</li>
<li className="k-drawer-item">
<span className="k-item-text">Products</span>
</li>
<li className="k-drawer-item">
<span className="k-item-text">About</span>
</li>
</ul>
</DrawerNavigation>
<DrawerContent>
<Button onClick={handleClick}>Toggle the drawer state</Button>
</DrawerContent>
</Drawer>
);
};
Properties
props
DrawerNavigationProps intersected with RefAttributes<null | DrawerNavigationHandle>
The props of the DrawerNavigation component.