๐ โCurrently I am working with
import React from "react"
import ReactDOM from "react-dom/client"
type Props = {
fullName: string
}
const Greeting = ({ fullName }: Props) => {
return (
<p>
Hello everyone, I am {fullName}, Jr. Software Engineer from Dhaka,
Bangladesh.
</p>
)
}
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<Greeting fullName="Mir Labib Hossain" />
</React.StrictMode>
)