From ffe8dad9ff21627575764bb4510c3c55200784b0 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Wed, 2 Mar 2022 03:08:33 -0600 Subject: [PATCH] Added simple suggested matches template. --- sports-matcher/src/App.js | 15 +++------------ sports-matcher/src/SuggestedMatches.js | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 12 deletions(-) create mode 100644 sports-matcher/src/SuggestedMatches.js diff --git a/sports-matcher/src/App.js b/sports-matcher/src/App.js index cf568dc..6e0a8e0 100644 --- a/sports-matcher/src/App.js +++ b/sports-matcher/src/App.js @@ -1,22 +1,13 @@ -import logo from './logo.svg'; import './App.css'; import MatchInfo from './matchinfo'; -import { Stack } from '@mui/material'; +import { Stack, Typography } from '@mui/material'; +import SuggestedMatches from './SuggestedMatches'; function App() { return (
-
-
- - - - - - - - +
); diff --git a/sports-matcher/src/SuggestedMatches.js b/sports-matcher/src/SuggestedMatches.js new file mode 100644 index 0000000..dde7f3e --- /dev/null +++ b/sports-matcher/src/SuggestedMatches.js @@ -0,0 +1,20 @@ +import { Stack, Typography } from "@mui/material"; +import MatchInfo from "./matchinfo"; + +export default function SuggestedMatches() { + return ( +
+ + Suggested + + + + + + + + + +
+ ); +} \ No newline at end of file