This is my first post on my blog, and it feels like a great achievement to me. With this blog, I am able to:
You are welcome to send me an email (yvanbrito96@gmail.com
) with any comments about my upcoming posts. Greetings!
import { createRoot } from 'react-dom/client';
interface HelloMessageProps {
name: string;
}
function HelloMessage({ name }: HelloMessageProps) {
return <div>Hello {name}</div>;
}
const root = createRoot(document.getElementById('container'));
root.render(<HelloMessage name="Taylor" />);