Breadcrumb
Universal Props
How to use
import React from 'react';
import { withBluerain } from '@blueeast/bluerain-os';
const Breadcrumb = (props) => (
const BR = props.bluerain;
const Breadcrumb = BR.Components.get('Breadcrumb');
return (<Breadcrumb
style={{ padding: 20, backgroundColor:'white' }}
data={[{ title:'CardView', path: 'www.facebook.com' }]}
label={'Site'}
colorPrev={'red'}
colorActive={'yellow'}
/>);
export default withBluerain(Breadcrumb);Storybook
Last updated