Files
cunkebao_v3/Cunkebao/src/App.tsx

15 lines
299 B
TypeScript
Raw Normal View History

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;