This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Customizing Navigation
TomFullalove edited this page Apr 1, 2019
·
2 revisions
Additional React components can be added to the navigation bar adding the components property to the navigation setting. This property takes an array of React components that will be rendered after any other items that are configured to be displayed in the navigation bar by your flow.
navigation: {
isFixed: true;
components: [
React.DOM.li(null, React.DOM.a({ href: '#' }, 'My Custom Nav Item'))
]
}
The navigation bar is based on the Bootstrap 3 elements & styling. You can find more information on what elements the navigation bar supports and examples of using them here: https://getbootstrap.com/docs/3.3/components/#navbar
...