From 5a02de2054e4c29488fb3a542a001afcb28db509 Mon Sep 17 00:00:00 2001 From: Camerin Figueroa Date: Mon, 20 Sep 2021 16:36:40 -0400 Subject: [PATCH] Added Modal Support and a contact modal to nav Modal component was created to be used throughout the app Contact Modal was created with a form to make and send emails to me redux wired up for the Contact Modal --- public/index.html | 1 + src/actions/index.js | 15 +++++++++- src/components/ContactModal.js | 33 +++++++++++++++++++++ src/components/Modal.js | 26 ++++++++++++++++ src/components/Navigation.js | 16 ++++++++-- src/components/css/Modal.css | 46 +++++++++++++++++++++++++++++ src/components/css/Navigation.css | 10 +++++-- src/reducers/contactModalReducer.js | 13 ++++++++ src/reducers/index.js | 4 ++- 9 files changed, 158 insertions(+), 6 deletions(-) create mode 100644 src/components/ContactModal.js create mode 100644 src/components/Modal.js create mode 100644 src/components/css/Modal.css create mode 100644 src/reducers/contactModalReducer.js diff --git a/public/index.html b/public/index.html index aa069f2..566f178 100644 --- a/public/index.html +++ b/public/index.html @@ -29,6 +29,7 @@
+