12 lines
151 B
JavaScript
12 lines
151 B
JavaScript
import React from "react";
|
|
|
|
const Footer = () => {
|
|
|
|
return (
|
|
<footer>
|
|
Footer
|
|
</footer>
|
|
);
|
|
}
|
|
|
|
export default Footer; |