@onwave/ui
Version:
onwave ui library
26 lines • 920 B
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
import React from "react";
import { BottomSheet } from ".";
export default {
title: "components/overlays/BottomSheet",
component: BottomSheet,
argTypes: {},
};
var Template = function (args) { return React.createElement(BottomSheet, __assign({}, args)); };
export var SimpleBottomSheet = Template.bind({});
SimpleBottomSheet.args = {
title: "헬로우",
renderContent: (React.createElement("ul", { style: { margin: 0 } },
React.createElement("li", null, "Item"))),
};
//# sourceMappingURL=index.stories.js.map