Create page depency components

This commit is contained in:
2021-09-01 17:29:45 +01:00
parent f07ab92cfc
commit 93efa42f91
3 changed files with 88 additions and 0 deletions

9
src/Footer.js Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
export default function Footer() {
return (
<footer>
&copy; Matthew Grove {new Date().getFullYear()}
</footer>
)
}