From 6b6e36d8801858c73e0be7877de6aaa72d2db905 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 6 Jan 2026 20:08:40 +0000 Subject: [PATCH] feat: Add settings component --- webclient/src/App.js | 1 + webclient/src/Settings.js | 0 2 files changed, 1 insertion(+) create mode 100644 webclient/src/Settings.js diff --git a/webclient/src/App.js b/webclient/src/App.js index 42116ad..b3abdeb 100644 --- a/webclient/src/App.js +++ b/webclient/src/App.js @@ -14,6 +14,7 @@ import Search from './Search.js'; import Submit from './Submit.js'; import Results from './Results.js'; import ScrollToTop from './ScrollToTop.js'; +import Settings from './Settings.js'; function App() { const [theme, setTheme] = useState(localStorage.getItem('theme') || ''); diff --git a/webclient/src/Settings.js b/webclient/src/Settings.js new file mode 100644 index 0000000..e69de29