9 lines
184 B
JavaScript
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; |