@appearhere/bloom
Version:
Appear Here's pattern library and styleguide
31 lines (29 loc) • 631 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import LeftRight from './LeftRight';
storiesOf('LeftRight', module)
.add('Default view', () => (
<LeftRight
leftChildren={
<button>Let your space</button>
}
rightChildren={
<p>
Join 3,900 spaces around the world.
</p>
}
/>
))
.add('Right primary side', () => (
<LeftRight
leftChildren={
<button>Let your space</button>
}
rightChildren={
<p>
Join 3,900 spaces around the world.
</p>
}
primarySide="right"
/>
));