From 0d05d12314ec9b3a2b2fbd7c1f427f499a74c6e3 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Tue, 2 Sep 2025 14:34:58 +0800 Subject: [PATCH] Added copyright component --- fwt/components/Copyright/Copyright.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 fwt/components/Copyright/Copyright.tsx diff --git a/fwt/components/Copyright/Copyright.tsx b/fwt/components/Copyright/Copyright.tsx new file mode 100644 index 0000000..b8338d7 --- /dev/null +++ b/fwt/components/Copyright/Copyright.tsx @@ -0,0 +1,14 @@ +interface Props { + year: string + name: string +} + +export default (props: Props) => { + return ( + <> + + Copyright © {props.year} {props.name} All Rights Reserved. + + + ) +}