UNPKG

brightyui

Version:

Brighty UI library

19 lines 606 B
import { ECountries } from '../types/ECountries'; import Cell from '../components/Cell/Cell'; // More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction var meta = { title: 'Example/Cell', component: Cell, tags: ['autodocs'], }; export default meta; // More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args export var CellStory = { args: { title: 'Title', subtitle: 'Subtitle', type: 'country', country: ECountries.Afganistan, }, }; //# sourceMappingURL=Cell.stories.js.map