dev
huwei 2026-07-09 09:24:16 +08:00
parent 21ff39b55d
commit fa9357b9b0
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import React from "react";
import { Card, Typography } from "antd";
const { Title } = Typography;
function A1Page() {
return (
<div style={{ padding: 24 }}>
<Card>
<Title level={3} style={{ textAlign: "center" }}>
你好
</Title>
</Card>
</div>
);
}
export default A1Page;