diff options
Diffstat (limited to 'src/components/Footer')
| -rw-r--r-- | src/components/Footer/Footer.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx new file mode 100644 index 0000000..d92fb72 --- /dev/null +++ b/src/components/Footer/Footer.tsx @@ -0,0 +1,11 @@ +import Copyright from '@components/Copyright/Copyright'; + +const Footer = () => { + return ( + <footer> + <Copyright /> + </footer> + ); +}; + +export default Footer; |
