10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
const Footer = () => {
|
|
return (
|
|
<div style={{ textAlign: "center" }}>
|
|
<p>© Gractwo 2020-{new Date().getFullYear()}</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export { Footer };
|