import { Meta, Story } from "@storybook/react";

import {{NAME}}, { {{NAME}}Props } from ".";

export default {
	title: "Components/{{NAME}}",
	component: {{NAME}},
} as Meta;

const Template: Story<{{NAME}}Props> = (props: {{NAME}}Props) => {
	return <{{NAME}} {...props} />;
};

export const Play = Template.bind({});
Play.args = {
	title: { content: "Title", tag: "h2" },
};
