import React from "react"; import { StoryFn, Meta } from "@storybook/react"; import { Title, Icon, Root } from "./index"; export default { title: "Unofficial/POI", component: Root, } as Meta; const Template: StoryFn = (args) => ( </Root> ); export const Primary = Template.bind({});