YB

My First Post

Javascript code

This is my first post on my blog, and it feels like a great achievement to me. With this blog, I am able to:

  1. Describe my previous experiences.
  2. Learn something new and share this newfound knowledge.
  3. Share some interesting news, and more.

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" />);