UNPKG

isomtrik-quickchat

Version:

isomtrik-quickchat is a lightweight, real-time chat component built with Stencil JS. It is designed to be seamlessly integrated into web applications, offering customizable and responsive chat functionalities. The module supports both CommonJS and ES modu

31 lines (27 loc) 849 B
import { html } from 'lit'; import { MainLayout } from './final'; import { Default as HeadDefault } from '../Head/Head.stories'; // import { Default as BodyDefault } from '../Body/Body.stories'; import { Default as FooterDefault } from '../Footer/Footer.stories'; export default { title: 'Component/MainLayout', // component: MainLayout, render: (args) => MainLayout(args), tags: ['autodocs'], argTypes: { head: { control: 'object' }, // body: { control: 'text' }, footer: { control: 'object' }, }, args: { head: HeadDefault.args, // body: BodyDefault.args.body, footer: FooterDefault.args, }, }; export const Default = { args: { // More on composing args: https://storybook.js.org/docs/writing-stories/args#args-composition ...HeadDefault.args, }, }