brightyui
Version:
Brighty UI library
23 lines • 797 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CellStory = void 0;
var tslib_1 = require("tslib");
var ECountries_1 = require("../types/ECountries");
var Cell_1 = tslib_1.__importDefault(require("../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_1.default,
tags: ['autodocs'],
};
exports.default = meta;
// More on writing stories with args: https://storybook.js.org/docs/react/writing-stories/args
exports.CellStory = {
args: {
title: 'Title',
subtitle: 'Subtitle',
type: 'country',
country: ECountries_1.ECountries.Afganistan,
},
};
//# sourceMappingURL=Cell.stories.js.map