16 lines
287 B
TypeScript
16 lines
287 B
TypeScript
|
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>
|
||
|
)
|
||
|
}
|