import type { Meta, StoryObj } from '@stencil/storybook-plugin'; import { h } from '@stencil/core'; import { MyComponent } from './my-component'; const meta: Meta = { title: 'MyComponent', component: MyComponent, parameters: { layout: 'centered', }, argTypes: { first: { control: 'text' }, last: { control: 'text' }, middle: { control: 'text' }, }, args: { first: 'John', last: 'Doe', middle: 'Michael' }, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { first: 'John', last: 'Doe', middle: 'Michael', }, render: (props) => , }; /** * Storybook story without custom render function */ export const Secondary: Story = { args: { first: 'Jane', last: 'Smith', middle: 'Marie', }, };