system-copyright-react/src/layout/foot/Foot.tsx

16 lines
287 B
TypeScript
Raw Normal View History

2024-03-11 19:13:42 +08:00
import React from 'react';
const footStyle: React.CSSProperties = {
position: 'fixed',
bottom: 0,
left: 0,
height: '40px',
width: '100%',
backgroundColor: 'red',
}
export default function Foot() {
return (
<div style={footStyle}>footer</div>
)
}