diff options
Diffstat (limited to 'extension/react-app/src/App.tsx')
-rw-r--r-- | extension/react-app/src/App.tsx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extension/react-app/src/App.tsx b/extension/react-app/src/App.tsx new file mode 100644 index 00000000..0c40ced1 --- /dev/null +++ b/extension/react-app/src/App.tsx @@ -0,0 +1,29 @@ +import DebugPanel from "./components/DebugPanel"; +import MainTab from "./tabs/main"; +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"; + +function App() { + return ( + <> + <Provider store={store}> + <DebugPanel + tabs={[ + { + element: <Notebook />, + title: "Notebook", + }, + // { element: <MainTab />, title: "Debug Panel" }, + // { element: <WelcomeTab />, title: "Welcome" }, + // { element: <ChatTab />, title: "Chat" }, + ]} + ></DebugPanel> + </Provider> + </> + ); +} + +export default App; |