type props = { imagePath : string; title : String; text : String; }; export const FeatureColumn = ({ imagePath, title, text }: props) => { return (
{`icon
{title}
{text}
); };