Skip to content

Commit 5f565b9

Browse files
committed
[added] Docs example of passing component to navbar brand.
1 parent e75fea5 commit 5f565b9

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

docs/examples/NavbarBrand.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
const navbarInstance = (
2+
<Navbar brand={<a href="#">React-Bootstrap</a>}>
3+
<Nav>
4+
<NavItem eventKey={1} href='#'>Link</NavItem>
5+
<NavItem eventKey={2} href='#'>Link</NavItem>
6+
<DropdownButton eventKey={3} title='Dropdown'>
7+
<MenuItem eventKey='1'>Action</MenuItem>
8+
<MenuItem eventKey='2'>Another action</MenuItem>
9+
<MenuItem eventKey='3'>Something else here</MenuItem>
10+
<MenuItem divider />
11+
<MenuItem eventKey='4'>Separated link</MenuItem>
12+
</DropdownButton>
13+
</Nav>
14+
</Navbar>
15+
);
16+
17+
React.render(navbarInstance, mountNode);

docs/src/ComponentsPage.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -335,13 +335,17 @@ const ComponentsPage = React.createClass({
335335
<div className='bs-docs-section'>
336336
<h1 id='navbars' className='page-header'>Navbars <small>Navbar, Nav, NavItem</small></h1>
337337
<h2 id='navbars-examples'>Example navbars</h2>
338-
<p>You can specify a brand by passing a renderable component or string in <code>brand</code></p>
339338
<p>Navbars are by default accessible and will provide <code>role='navigation'</code>.</p>
340339
<p>They also supports all the different Bootstrap classes as properties. Just camelCase the css class and remove navbar from it. For example <code>navbar-fixed-top</code> becomes the property <code>fixedTop</code>. The different properties are <code>fixedTop</code>, <code>fixedBottom</code>, <code>staticTop</code>, <code>inverse</code>, <code>fluid</code>.</p>
341340
<p>You can drag elements to the right by specifying the <code>right</code> property on a nav group.</p>
342341

342+
<h3>Navbar Basic Example</h3>
343343
<ReactPlayground codeText={Samples.NavbarBasic} />
344344

345+
<h3>Navbar Brand Example</h3>
346+
<p>You can specify a brand by passing in a string to <code>brand</code>, or you can pass in a renderable component.</p>
347+
<ReactPlayground codeText={Samples.NavbarBrand} />
348+
345349
<h3>Mobile Friendly</h3>
346350
<p>To have a mobile friendly Navbar, specify the property <code>toggleNavKey</code> on the Navbar with a value corresponding to an <code>eventKey</code> of one of his <code>Nav</code> children. This child will be the one collapsed.</p>
347351
<p>By setting the property {React.DOM.code(null, 'defaultNavExpanded={true}')} the Navbar will start expanded by default.</p>

docs/src/Samples.js

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export default {
5151
NavStacked: require('fs').readFileSync(__dirname + '/../examples/NavStacked.js', 'utf8'),
5252
NavJustified: require('fs').readFileSync(__dirname + '/../examples/NavJustified.js', 'utf8'),
5353
NavbarBasic: require('fs').readFileSync(__dirname + '/../examples/NavbarBasic.js', 'utf8'),
54+
NavbarBrand: require('fs').readFileSync(__dirname + '/../examples/NavbarBrand.js', 'utf8'),
5455
NavbarCollapsable: require('fs').readFileSync(__dirname + '/../examples/NavbarCollapsable.js', 'utf8'),
5556
CollapsableNav: require('fs').readFileSync(__dirname + '/../examples/CollapsableNav.js', 'utf8'),
5657
TabbedAreaUncontrolled: require('fs').readFileSync(__dirname + '/../examples/TabbedAreaUncontrolled.js', 'utf8'),

0 commit comments

Comments
 (0)