@roo-ui/components
Version:
12 lines • 431 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import { withDocs } from 'storybook-readme';
import { Box } from '..';
import Card from './Card';
import README from './README.md';
storiesOf('Components|Card', module).addDecorator(withDocs(README)).add('default', function () {
return React.createElement(Box, {
p: 6,
bg: "greys.porcelain"
}, React.createElement(Card, null, "Hello world"));
});