1function Footer() {
2 return (
3 <footer
4 style={{
5 backgroundColor: "#333",
6 color: "white",
7 padding: "10px",
8 textAlign: "center",
9 marginTop: "20px",
10 }}
11 >
12 <p>© 2026 My React Website. All rights reserved.</p>
13 </footer>
14 );
15}
16
17export default Footer;