import React from 'react'; import SimpleTableChart from 'app/components/charts/simpleTableChart'; export default { title: 'DataVisualization/Charts/SimpleTableChart', component: SimpleTableChart, args: { title: '', }, }; export const _SimpleTableChart = ({title}) => { const organization = {slug: 'org-slug'}; const fields = ['title', 'count()']; const metadata = {count: 'string', title: 'string'}; const data = [ {title: 'An error', count: 100}, {title: 'An longer title that goes on a bit', count: 1000}, ]; return (