From 69956257a184d4cc6b14feb15a2dd23c2e8552c1 Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Thu, 30 Jun 2022 05:51:09 +0500 Subject: [PATCH] calendar --- src/App.tsx | 2 + src/components/global/Calendar.tsx | 53 ++++++++ src/helpers/calendar.ts | 212 +++++++++++++++++++++++++++++ src/styles/_calendar.scss | 11 ++ src/styles/style.scss | 1 + 5 files changed, 279 insertions(+) create mode 100644 src/components/global/Calendar.tsx create mode 100644 src/helpers/calendar.ts create mode 100644 src/styles/_calendar.scss diff --git a/src/App.tsx b/src/App.tsx index 1fcf0b6..bad76d1 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -16,6 +16,7 @@ import Profile from "./pages/Profile"; import EventItem from "./pages/EventItem"; import Structure from "./pages/Structure"; import Contacts from "./pages/Contact"; +import Calendar from "./components/global/Calendar"; const App = () => { return ( @@ -30,6 +31,7 @@ const App = () => { } /> } /> } /> + } />