UNPKG

@hisptz/react-ui

Version:

A collection of reusable complex DHIS2 react ui components.

19 lines (17 loc) 513 B
import React from "react"; import LegendDefinitionsField from "./components/LegendDefinitions"; const Template = args => /*#__PURE__*/React.createElement(LegendDefinitionsField, args); export const LegendDefinition = Template.bind({}); LegendDefinition.args = { shouldVerify: false, label: "Legend Definitions", name: "legendDefinitions", onChange: values => { console.log(values); }, value: [] }; export default { title: "Components/Legend Definitions/Field", component: LegendDefinition };