UNPKG

@arche-mc2/arche-controls

Version:

We know that there are a ton of react UI library projects to choose from. Our hope with this one is to provide the next generation of react components that you can use to bootstrap your next project, or as a reference for building a UIKit. Read on to get

30 lines 1.66 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var React = require("react"); var UpTile_1 = require("./UpTile"); var addon_knobs_1 = require("@storybook/addon-knobs"); var stories_1 = require("../../../Common/stories"); exports.default = { title: 'Components/Containers/UpTile', decorators: [addon_knobs_1.withKnobs, stories_1.getRootContainer('UpTile')], component: UpTile_1.default }; exports.GeneralUse = function () { return (React.createElement(UpTile_1.default, { title: 'UpTile title' }, "Content")); }; exports.WithFooter = function () { return (React.createElement(UpTile_1.default, { title: 'UpTile title', footer: 'This is the footer' }, "Content")); }; exports.WithFooter.storyName = 'Show UpTile With Footer'; exports.MaxHeightContent = function () { return (React.createElement(UpTile_1.default, { title: 'UpTile title', maxHeight: '200' }, React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"), React.createElement("p", null, "Content"))); }; exports.MaxHeightContent.storyName = 'Add MaxHeight Property To UpTile Body'; //# sourceMappingURL=index.stories.js.map