Setup Dashboard Page

This commit is contained in:
Piyush Sharma 2022-04-05 02:19:08 -04:00
parent 0f480af1f0
commit f38867598e

View File

@ -0,0 +1,11 @@
import React from "react";
// import { apiClient } from "../utils/httpClients";
export default class Dashboard extends React.Component{
constructor(props) {
super(props);
}
render() {
return(<h1>Dashboard</h1>);
}
}