import React from "react"; import { Routes, Route } from "react-router-dom"; import { URLs } from "./__data__/urls"; import Home from "./pages/Home.jsx"; import Init from "./pages/Init.jsx"; import Account from "./pages/Account.jsx"; import Chat from "./pages/Chat.jsx"; import SignIn from "./pages/SignIn.jsx"; import SignUp from "./pages/SignUp.jsx"; export const Dashboard = () => { return ( } /> } /> } /> } /> } /> } /> 404 page not found} /> ); };