import React, { useState } from "react"; function Dashboard(props) { const [startDate, setStartDate] = useState(new Date()); const tasks = [ 'I Followed instructions the first time.', 'I stayed on task.', 'I kept a calm body.', 'I tried not to distract my peers.', ] return (

Dahsboard

This is views/Dahsboard.jsx. You can add anything you want here. The user is logged in! Cool!

) } export default Dashboard