nav2 push 2 history with userId

This commit is contained in:
Primakov Alexandr Alexandrovich
2024-10-29 15:25:59 +03:00
parent b631206c44
commit 22a76efc1f
5 changed files with 12 additions and 15 deletions
+5 -5
View File
@@ -1,12 +1,12 @@
import React from 'react';
import { BrowserRouter, HashRouter } from 'react-router-dom';
import { ThemeProvider } from '@emotion/react'
import React from "react";
import { BrowserRouter, HashRouter } from "react-router-dom";
import { ThemeProvider } from "@emotion/react";
import { Dashboard } from './dashboard';
import { Dashboard } from "./dashboard";
const App = () => {
return (
<ThemeProvider theme={{ colors: { main: 'green' } }}>
<ThemeProvider theme={{ colors: { main: "green" } }}>
<BrowserRouter>
<Dashboard />
</BrowserRouter>