优化组件名

This commit is contained in:
none
2023-03-03 14:06:32 +08:00
parent 83d86c58ed
commit 050912f60d
9 changed files with 3 additions and 7 deletions

View File

@@ -0,0 +1,32 @@
import React from "react";
import { Layout, Typography } from "antd";
export const Footer: React.FC = () => {
return (
<Layout.Footer
style={{ backgroundColor: "#0F0A1E", height: 103, paddingTop: 30 }}
>
<Typography.Title
style={{
textAlign: "center",
fontSize: 12,
color: "#FFFFFF",
opacity: 0.3,
}}
>
© 2021 PlayEdu ICP备20026280号-01
</Typography.Title>
<Typography.Title
style={{
textAlign: "center",
fontSize: 12,
color: "#FFFFFF",
opacity: 0.3,
marginTop: 19,
}}
>
Powered By
</Typography.Title>
</Layout.Footer>
);
};