UNPKG

@navinc/base-react-components

Version:
19 lines (15 loc) 374 B
import React from 'react' import Article from './article.js' import readme from './article.readme.md' import { singleArticle } from './data/article.js' export default { title: 'General/Article', component: Article, parameters: { readme: { content: readme }, }, } export const Standard = (args) => <Article {...args} /> Standard.args = { ...singleArticle, }