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