e-lado
Version:
[](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [](https://gemnasium.com/sharetribe/shar
48 lines (44 loc) • 1.26 kB
JavaScript
import r from 'r-dom';
import { storify, defaultRailsContext } from '../../Styleguide/withProps';
import LanguagesMobile from './LanguagesMobile';
const { storiesOf } = storybookFacade;
const containerStyle = { style: { minWidth: '100px', background: 'white' } };
storiesOf('Top bar')
.add('MenuMobile: language section', () => (
r(storify(
r(LanguagesMobile,
{
marketplaceContext: defaultRailsContext,
name: 'Language',
color: '#64A',
links: [
{
href: '#',
content: 'English',
active: true,
activeColor: '#4A4A4A',
},
{
href: '#',
content: 'German',
active: false,
activeColor: '#4A4A4A',
},
{
href: '#',
content: 'Spanish',
active: false,
activeColor: '#4A4A4A',
},
{
href: '#',
content: 'Finnish',
active: false,
activeColor: '#4A4A4A',
},
],
}
),
containerStyle
))
));