This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// App.jsx | |
import { Routes, Route, Navigate } from "react-router-dom"; | |
import { lazy, Suspense } from "react"; | |
import AuthRoute from "./components/AuthRoute"; | |
import "./App.css"; | |
import Loading from "./components/Loading"; | |
import Settings from "./components/UserSettings"; | |
import Wall from "./components/PublicWallView"; | |
const Home = lazy(() => import("./pages/Home")); |