storybook/docs/_snippets/csf-3-example-render.md
2024-11-21 15:56:13 +00:00

2.5 KiB

// Other imports and story implementation
export const Default: Story = {
  render: (args) => ({
    props: args,
  }),
};
// Other imports and story implementation
export const Default = {
  render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default: Story = {
  render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default = {
  render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default: Story = {
  render: (args) => <Button {...args} />,
};
// Other imports and story implementation
export const Default = {
  render: (args) => ({
    Component: Button,
    props: args,
  });
};
// Other imports and story implementation
export const Default: Story = {
  render: (args) => ({
    Component: Button,
    props: args,
  }),
};
// Other imports and story implementation
export const Default = {
  render: (args) => ({
    components: { Button },
    setup() {
      return { args };
    },
    template: '<Button v-bind="args" />',
  }),
};
// Other imports and story implementation
export const Default: Story = {
  render: (args) => ({
    components: { Button },
    setup() {
      return { args };
    },
    template: '<Button v-bind="args" />',
  }),
};
// Other imports and story implementation

export const Default = {
  render: (args) => html`<demo-button label="Hello" @click=${action('clicked')}></demo-button>`,
};
// Other imports and story implementation

export const Default: Story = {
  render: (args) => html`<custom-button label="Hello" @click=${action('clicked')}></custom-button>`,
};