Code blocks
msg = "Hello World"
msg := "Hello World"
npm i @thirdweb-dev/react
- npm i @thirdweb-dev/react+ yarn add @thirdweb-dev/react
const msg = "Hello World"
const Msg = ({ text }) => {return <div>{text}</div>;};<Msg text="hello world" />;
const msg: string = "Hello World";
const Msg: React.FC<{ text: string }> = ({ text }) => {return <div>{text}</div>;};<Msg text="hello world" />;