example dashboard svg mqtt

This commit is contained in:
2025-09-29 16:23:20 +07:00
parent b9b5704232
commit 6de6d35a6b
6 changed files with 675 additions and 37 deletions

View File

@@ -11,6 +11,7 @@ import Blank from './pages/blank/Blank';
// Master
import IndexDevice from './pages/master/device/IndexDevice';
import SvgTest from './pages/home/SvgTest';
const App = () => {
return (
@@ -20,6 +21,7 @@ const App = () => {
<Route path="/" element={<Navigate to="/signin" replace />} />
<Route path="/signin" element={<SignIn />} />
<Route path="/signup" element={<SignUp />} />
<Route path="/svg" element={<SvgTest />} />
{/* Protected Routes */}
<Route path="/dashboard" element={<ProtectedRoute />}>