import * as React from "react";
import { StoryFn, 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: StoryFn = args => (
);
export const Default = {
render: Template
};
export const WithNestedObjects = {
render: args => (
)
};
export const WithRenderKeys = {
render: args => (
)
};