UNPKG

@appearhere/bloom

Version:

Appear Here's pattern library and styleguide

15 lines (13 loc) 405 B
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', }} /> ));