12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
import React from 'react';
|
|
// import './Header.scss';
|
|
|
|
function Footer() {
|
|
return (
|
|
<footer className="footer">
|
|
<p>© 2023 Paris France</p>
|
|
</footer>
|
|
);
|
|
}
|
|
|
|
export default Footer; |