Created the HomeTool.jsx

This commit is contained in:
2023-05-30 18:15:35 +02:00
parent cf3de0f06b
commit f3c35279d4

View File

@ -0,0 +1,10 @@
import "./styles.sass";
import {FontAwesomeIcon} from "@fortawesome/react-fontawesome";
export const HomeTool = ({icon, title, description}) => (
<div className="home-tool">
<FontAwesomeIcon icon={icon} />
<h1>{title}</h1>
<p>{description}</p>
</div>
)