diff --git a/fwt/components/Head/Head.tsx b/fwt/components/Head/Head.tsx new file mode 100644 index 0000000..8299bc9 --- /dev/null +++ b/fwt/components/Head/Head.tsx @@ -0,0 +1,20 @@ +interface Props { + title: string + name: string + description: string +} + +export default (props: Props) => { + return ( + <> + + + + + + + {props.title} + + + ) +}