import React from 'react'; interface BioProps { text: string; } const Bio: React.FC = ({ text }) => { return (

About Me

{text}

); }; export default Bio;