import * as React from "react"; import { Story, Meta } from "@storybook/react"; import { HashMap } from "../index"; import { configurationMapStoryWrapper } from "./helpers/ConfigurationMapStoryWrapper"; export default { title: "Data Listing/HashMap", decorators: [configurationMapStoryWrapper], component: HashMap, argTypes: { headline: { control: { type: "text" } }, hash: { control: { disable: true } }, renderKeys: { control: { disable: true } } } } as Meta; const Template: Story = args => ( ); export const Default = Template.bind({}); export const WithNestedObjects = args => ( ); export const WithRenderKeys = args => ( );