import React, {useState} from 'react'; // nodejs library that concatenates classes import classNames from "classnames"; // react plugin used to create charts import { Line, Bar } from "react-chartjs-2"; // https://demos.creative-tim.com/black-dashboard-react/?ref=appseed#/admin/dashboard // reactstrap components import { Button, ButtonGroup, Card, CardHeader, CardBody, CardTitle, DropdownToggle, DropdownMenu, DropdownItem, UncontrolledDropdown, Label, FormGroup, Input, Table, Row, Col, UncontrolledTooltip } from "reactstrap"; // core components import { chartExample1, chartExample2, chartExample3, chartExample4 } from "./charts.js"; // This is the start of a dashboard that can be used. // What data do we fill in here? Idk const Dashboard = (props) => { const [bigChartData, setBgChartData] = useState("data1"); document.title = "Shuffle - dashboard" const data =
Total Shipments
Performance
Total Shipments
{" "} 763,215
Daily Sales
{" "} 3,500€
Completed Tasks
12,100K
const dataWrapper =
{data}
return dataWrapper } export default Dashboard;