Files
csc309-team58/sports-matcher/src/pages/DashboardPage.js

9 lines
184 B
JavaScript

import { Component } from "react";
class DashboardPage extends Component {
render() {
return <h1>Hello, this is the dashboard.</h1>;
}
}
export default DashboardPage;