13 lines
196 B
TypeScript
13 lines
196 B
TypeScript
import React from "react";
|
|
|
|
const Footer = (): JSX.Element => {
|
|
return (
|
|
<footer>
|
|
<hr />
|
|
<span>{"I'm here to stay (Footer)"}</span>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|