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