Added copyright component
This commit is contained in:
parent
de74de8b0a
commit
0d05d12314
1 changed files with 14 additions and 0 deletions
14
fwt/components/Copyright/Copyright.tsx
Normal file
14
fwt/components/Copyright/Copyright.tsx
Normal 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>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue