2025-08-12 09:27:50 +08:00
|
|
|
import React from "react";
|
|
|
|
|
import AppRouter from "@/router";
|
|
|
|
|
import UpdateNotification from "@/components/UpdateNotification";
|
2025-07-03 17:39:23 +08:00
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
|
return (
|
2025-08-12 09:27:50 +08:00
|
|
|
<>
|
|
|
|
|
<AppRouter />
|
|
|
|
|
<UpdateNotification position="top" autoReload={false} showToast={true} />
|
|
|
|
|
</>
|
2025-07-03 17:39:23 +08:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default App;
|