summaryrefslogtreecommitdiff
path: root/extension/react-app/src/App.tsx
blob: a51541d0e0ce37ba8643cb8de44696e4761b9036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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 GUI from "./tabs/gui";

function App() {
  return (
    <>
      <Provider store={store}>
        <DebugPanel
          tabs={[
            {
              element: <GUI />,
              title: "GUI",
            },
            // { element: <MainTab />, title: "Debug Panel" },
            // { element: <WelcomeTab />, title: "Welcome" },
            // { element: <ChatTab />, title: "Chat" },
          ]}
        ></DebugPanel>
      </Provider>
    </>
  );
}

export default App;