From 7a317c66c343d0abb70d825a933acb5929fe6b76 Mon Sep 17 00:00:00 2001 From: Yusuf Ipek Date: Tue, 4 May 2021 19:17:59 +0300 Subject: [PATCH] created popup component --- src/App.js | 2 ++ src/App.scss | 1 + src/commons/popup/popup.jsx | 47 +++++++++++++++++++++++++++++++++ src/sass/components/_popup.scss | 47 +++++++++++++++++++++++++++++++++ 4 files changed, 97 insertions(+) create mode 100644 src/commons/popup/popup.jsx create mode 100644 src/sass/components/_popup.scss diff --git a/src/App.js b/src/App.js index 70fbc32..f17bd97 100644 --- a/src/App.js +++ b/src/App.js @@ -4,6 +4,7 @@ import Header from "./commons/header/header.jsx"; import Main from "./commons/main/main"; import Footer from "./commons/footer-section/footer"; import Navigation from "./commons/navigation/navigation"; +import Popup from "./commons/popup/popup"; function App() { return ( @@ -12,6 +13,7 @@ function App() {