diff --git a/frontend/src/components/portfolio/Skills.tsx b/frontend/src/components/portfolio/Skills.tsx new file mode 100644 index 0000000..6c0031b --- /dev/null +++ b/frontend/src/components/portfolio/Skills.tsx @@ -0,0 +1,13 @@ +import type { ReactElement } from "react"; + +interface SkillsProps { + label: string; +} + +export default function Skills({ label }: SkillsProps): ReactElement { + return ( + + {label} + + ); +}