mirror of
https://github.com/PlayEdu/frontend.git
synced 2025-12-24 00:49:45 +08:00
公用底部导入
This commit is contained in:
@@ -6,10 +6,9 @@ export const Footer: React.FC = () => {
|
||||
<Layout.Footer
|
||||
style={{
|
||||
width: "100%",
|
||||
backgroundColor: "#ffffff",
|
||||
height: 130,
|
||||
backgroundColor: "#333333",
|
||||
height: 90,
|
||||
textAlign: "center",
|
||||
paddingBottom: 100,
|
||||
}}
|
||||
>
|
||||
<i
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
export * from "./footer";
|
||||
export * from "./no-footer";
|
||||
export * from "./no-header";
|
||||
export * from "./header";
|
||||
export * from "./header";
|
||||
|
||||
0
src/compenents/no-footer/index.module.scss
Normal file
0
src/compenents/no-footer/index.module.scss
Normal file
21
src/compenents/no-footer/index.tsx
Normal file
21
src/compenents/no-footer/index.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import React from "react";
|
||||
import { Layout } from "antd";
|
||||
|
||||
export const NoFooter: React.FC = () => {
|
||||
return (
|
||||
<Layout.Footer
|
||||
style={{
|
||||
width: "100%",
|
||||
backgroundColor: "#ffffff",
|
||||
height: 130,
|
||||
textAlign: "center",
|
||||
paddingBottom: 100,
|
||||
}}
|
||||
>
|
||||
<i
|
||||
style={{ fontSize: 30, color: "#cccccc" }}
|
||||
className="iconfont icon-waterprint"
|
||||
></i>
|
||||
</Layout.Footer>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user