import React from 'react'
import styled from '@emotion/styled'
import { Card, Grid, TextField, Typography, Box, Container } from '@mui/material';
import { DatePicker } from '@mui/x-date-pickers';
import { LineChart, Line, XAxis, YAxis } from 'recharts';
const BTCWorkers = (
);
const CustomDiv = styled.div`
background-color: ${(props) => props.theme.palette.primary.light};
height: 140vh;
width: 100%
`;
const data = [{name: 'Page A', uv: 400, pv: 2400, amt: 2400}, {name: 'Page B', uv: 300, pv: 2400, amt: 2400}, {name: 'Page C', uv: 300, pv: 2400, amt: 2400}];
const GraphPage = () => {
return (
How Much Would You Have Made?Pick a past date and an amount invested to see how much you could have made! Pick a past date and an amount invested to see how much you could have made!investment dateamount
{BTCWorkers}
)
}
export default GraphPage