initial app

This commit is contained in:
Arnie
2023-06-01 20:24:59 +02:00
parent bb19e15a40
commit 34993f7f61
64 changed files with 10002 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import React from "react";
import { Spacer } from "../common/Spacer";
import { Paragraph } from "../common/Text";
type SkillProps = {
title: string;
};
const Skill: React.FC<React.PropsWithChildren<SkillProps>> = (props) => {
const { children, title } = props;
return (
<div>
<strong>{title}</strong>
<Spacer />
{React.Children.map(children, (c) => (
<Paragraph>{c}</Paragraph>
))}
</div>
);
};
export default Skill;