import { FlowMapV1Component } from './flow-map-v1.component'; import { geoJsonData } from './d3/GeoJson-data'; export default { title: 'Visualizations/Flow Map/Version1', component: FlowMapV1Component }; const Template = (args: FlowMapV1Component) => ({ component: FlowMapV1Component, props: args, }); // _____ _ _ // / ____| | (_) // | (___ | |_ ___ _ __ _ ___ ___ // \___ \| __/ _ \| '__| |/ _ \/ __| // ____) | || (_) | | | | __/\__ \ // |_____/ \__\___/|_| |_|\___||___/ export const Primary = Template.bind({}); Primary.args = { geoJson: geoJsonData };