Skip to content

Instantly share code, notes, and snippets.

@tidusia
Last active June 28, 2021 09:35
Show Gist options
  • Save tidusia/cd10313f59b9c3107d09ec817782a9a4 to your computer and use it in GitHub Desktop.
Save tidusia/cd10313f59b9c3107d09ec817782a9a4 to your computer and use it in GitHub Desktop.
import React from "react";
import { Meta, Story } from "@storybook/react";
import MyComponent, { MyComponentProps } from ".";
export default {
title: "MyComponent",
component: MyComponent,
decorators: [(story) => story()],
} as Meta;
const Template: Story<MyComponentProps> = (args) => <MyComponent {...args} />;
export const Default = Template.bind({});
Default.args = {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment