9 lines
178 B
TypeScript
9 lines
178 B
TypeScript
|
|
|
||
|
|
|
||
|
|
const Copyright = () => {
|
||
|
|
const currentYear = new Date().getFullYear();
|
||
|
|
return <>Copyright {currentYear}, Dashcode All Rights Reserved.</>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Copyright;
|