summaryrefslogtreecommitdiff
path: root/extension/react-app/src/App.tsx
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-02 01:05:59 -0400
committerNate Sesti <sestinj@gmail.com>2023-06-02 01:05:59 -0400
commit7f28abee0312c675e11e35ca9f2101ab2ef17c07 (patch)
treea5e83c40b42894f8cd50a4f76845e33715240394 /extension/react-app/src/App.tsx
parentf82ccddd3bc10093fea497ab15e8c1ae132ce66d (diff)
downloadsncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.tar.gz
sncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.tar.bz2
sncontinue-7f28abee0312c675e11e35ca9f2101ab2ef17c07.zip
notebook -> gui
Diffstat (limited to 'extension/react-app/src/App.tsx')
-rw-r--r--extension/react-app/src/App.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/react-app/src/App.tsx b/extension/react-app/src/App.tsx
index 0c40ced1..a51541d0 100644
--- a/extension/react-app/src/App.tsx
+++ b/extension/react-app/src/App.tsx
@@ -4,7 +4,7 @@ import { Provider } from "react-redux";
import store from "./redux/store";
import WelcomeTab from "./tabs/welcome";
import ChatTab from "./tabs/chat";
-import Notebook from "./tabs/notebook";
+import GUI from "./tabs/gui";
function App() {
return (
@@ -13,8 +13,8 @@ function App() {
<DebugPanel
tabs={[
{
- element: <Notebook />,
- title: "Notebook",
+ element: <GUI />,
+ title: "GUI",
},
// { element: <MainTab />, title: "Debug Panel" },
// { element: <WelcomeTab />, title: "Welcome" },