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

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

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

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

export const Play = Template.bind({});
Play.args = {
	anchorID: "any-id",
	title: {
		content: "The title",
		tag: "h2",
	},
};
