component
The component
prop allows you to change the wrapper component of a submenu. The component
prop accepts either a string or a ReactElement. If you pass a string, it will be used as the HTML tag for the wrapping component. If you pass a ReactElement, it will be rendered as the wrapping component itself.
Props
component?: string | ReactElement
Default Value
component = <a></a>;
Example
/horizontal-menu/submenu/component
Source Code