Added copyright component

This commit is contained in:
Patrick Alvin Alcala 2025-10-02 17:54:08 +08:00
parent 6511b7352d
commit d4814a6449
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
interface Props {
year: string
name: string
}
export default (props: Props) => {
return (
<>
<span>
Copyright © {props.year} {props.name} All Rights Reserved.
</span>
</>
)
}