1
1
mirror of https://github.com/neosubhamoy/pytubepp-helper.git synced 2026-02-04 11:22:22 +05:30

(feat): added extension manager

This commit is contained in:
2025-02-27 23:51:21 +05:30
Verified
parent c6ae5c7e85
commit d835184b30
28 changed files with 1167 additions and 23 deletions

View File

@@ -6,6 +6,7 @@ import App from "@/App";
import HomePage from "@/pages/home";
import SettingsPage from "@/pages/settings";
import NotificationsPage from "@/pages/notifications";
import ExtensionManagerPage from "@/pages/extension-manager";
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
@@ -15,6 +16,7 @@ ReactDOM.createRoot(document.getElementById('root')!).render(
<Route path="/" element={<HomePage />} />
<Route path="/settings" element={<SettingsPage />} />
<Route path="/notifications" element={<NotificationsPage />} />
<Route path="/extension-manager" element={<ExtensionManagerPage />} />
</Routes>
</BrowserRouter>
</App>