From ee96066849456d60260110cb2d01ae11b1fd18b8 Mon Sep 17 00:00:00 2001 From: Jehyun Jung Date: Wed, 10 Jul 2024 10:10:06 -0700 Subject: [PATCH] Add footer --- src/App.tsx | 2 ++ src/components/Footer/Footer.tsx | 12 ++++++++++++ src/sass/components/_footer.scss | 11 +++++++++++ src/sass/index.scss | 2 ++ 4 files changed, 27 insertions(+) create mode 100644 src/components/Footer/Footer.tsx create mode 100644 src/sass/components/_footer.scss diff --git a/src/App.tsx b/src/App.tsx index e833723..c87a68e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import Editor from './components/Editor/Editor'; import ReactSplitPane from './components/SplitPane/SplitPane'; import SwaggerUI from 'swagger-ui-react'; import petStoreAPISpec from './assets/petstore.apispec.json'; +import Footer from './components/Footer/Footer'; function App() { @@ -41,6 +42,7 @@ function App() { +