From f38867598e414bc879db241eed009277e9052e19 Mon Sep 17 00:00:00 2001 From: Piyush Sharma Date: Tue, 5 Apr 2022 02:19:08 -0400 Subject: [PATCH] Setup Dashboard Page --- sports-matcher/client/src/pages/Dashboard.js | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sports-matcher/client/src/pages/Dashboard.js diff --git a/sports-matcher/client/src/pages/Dashboard.js b/sports-matcher/client/src/pages/Dashboard.js new file mode 100644 index 0000000..c0af309 --- /dev/null +++ b/sports-matcher/client/src/pages/Dashboard.js @@ -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(

Dashboard

); + } +} \ No newline at end of file