@appearhere/bloom
Version:
Appear Here's pattern library and styleguide
19 lines (17 loc) • 427 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import CalendarMonth from './CalendarMonth';
storiesOf('CalendarMonth', module)
.add('Default', () => (
<CalendarMonth />
))
.add('with external dates', () => (
<CalendarMonth showOutOfRange />
))
.add('with custom heading format', () => (
<CalendarMonth
columnHeadingProps={ {
format: 'dddd',
} }
/>
));