import React from 'react'; import PropTypes from 'prop-types'; import { Container, Row, Col } from './../../../components'; import { HeaderMain } from "../../components/HeaderMain"; import { HeaderDemo } from "../../components/HeaderDemo"; import { NavbarExample } from '../../components/Navbars/NavbarExample'; const ExampleWrap = ({ name, children }) => (
{ name }
{ children }
); ExampleWrap.propTypes = { name: PropTypes.string, children: PropTypes.node, }; const Navbars = () => (

Documentation and examples for Bootstrap’s powerful, responsive navigation header, the navbar. Includes support for branding, navigation, and more, including support for our collapse plugin.

{ /* START Light */} Theming the navbar has never been easier thanks to Theme Providers. Wrap the Navbar with a NavbarThemeProvider component and set style="light" and color="<desired color>". { /* END Light */} { /* START Dark */} Theming the navbar has never been easier thanks to Theme Providers. Wrap the Navbar with a NavbarThemeProvider component and set style="dark" and color="<desired color>". { /* END Dark */} { /* START Color */} Theming the navbar has never been easier thanks to Theme Providers. Wrap the Navbar with a NavbarThemeProvider component and set style="color" and color="<desired color>". { /* END Color */}
); export default Navbars;