Compare commits

..

2 Commits

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;