feat: 重做个人信息页交互

This commit is contained in:
czz
2026-05-09 15:50:51 +08:00
parent f3eb25b035
commit ef70bfc71c
7 changed files with 401 additions and 24 deletions

View File

@@ -1,6 +1,7 @@
import "./app.scss";
import type { ReactNode } from "react";
function App(props) {
function App(props: { children?: ReactNode }) {
const { children } = props;
return children ?? null;
}