memos/web/src/App.tsx

12 lines
269 B
TypeScript

import { appRouterSwitch } from "./routers";
import { useAppSelector } from "./store";
import "./less/app.less";
function App() {
const pathname = useAppSelector((state) => state.location.pathname);
return <>{appRouterSwitch(pathname)}</>;
}
export default App;