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

(feat): added notifications page and app updater

This commit is contained in:
2025-02-13 09:30:35 +05:30
Verified
parent f6686f7e37
commit d6c5ff4be8
13 changed files with 436 additions and 11 deletions

View File

@@ -5,6 +5,7 @@ import { BrowserRouter, Routes, Route } from "react-router-dom";
import App from "@/App";
import HomePage from "@/pages/home";
import SettingsPage from "@/pages/settings";
import NotificationsPage from "@/pages/notifications";
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
@@ -13,6 +14,7 @@ ReactDOM.createRoot(document.getElementById('root')!).render(
<Routes>
<Route path="/" element={<HomePage />} />
<Route path="/settings" element={<SettingsPage />} />
<Route path="/notifications" element={<NotificationsPage />} />
</Routes>
</BrowserRouter>
</App>