From 15d71cb6ff92dfb400ff6a1c431306c5b9be0598 Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Tue, 16 Aug 2022 14:21:41 +0500 Subject: [PATCH] player info page started --- src/App.tsx | 2 + src/helpers/apiRequests.ts | 9 +++ src/pages/PlayerProfile.tsx | 127 ++++++++++++++++++++++++++++++++ src/styles/_player-profile.scss | 84 +++++++++++++++++++++ src/styles/style.scss | 1 + 5 files changed, 223 insertions(+) create mode 100644 src/pages/PlayerProfile.tsx create mode 100644 src/styles/_player-profile.scss diff --git a/src/App.tsx b/src/App.tsx index 75c33b8..6b237e4 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -25,6 +25,7 @@ import Structure from "./pages/Structure"; import Contacts from "./pages/Contact"; import AboutUs from "./pages/AboutUs"; import Tournaments from "./pages/Tournaments"; +import PlayerProfile from "./pages/PlayerProfile"; const App = () => { // Types @@ -68,6 +69,7 @@ const App = () => { } /> } /> } /> + } />