AppBar
Universal Props
Specific Library Props
How to use
import React from 'react';
import { withBluerain } from '@blueeast/bluerain-os';
const AppBar = (props) => (
const BR = props.bluerain;
const AppBar = BR.Components.get('AppBar');
const Button = BR.Components.get('Button');
const Text = BR.Components.get('Text');
return(<AppBar position="fixed" color="success">
<li>
<a href="/components/">Components</a>
</li>
<li>
<a href="https://github.com/reactstrap/reactstrap">Github</a>
</li>
</AppBar>);
export default withBluerain(AppBar);Storybook
Tests
Last updated