import React from "react";
import LineChart from "../../components/Charts/LineChart/LineChart";
import { data } from "./testData/lineChart";

export default {
  title: "Charts/Line Chart ",
  component: LineChart,
};

const Template = (args) => <LineChart {...args} />;

export const Default = Template.bind({});
Default.args = {
  data: data,
  width: "400px",
  height: "300px",
  header1: "US Dollars",
  header2: "S&P500",
  isOverPerforming: true,
};
