Code blocks
msg = "Hello World"
msg := "Hello World"
npm i thirdweb
- foo bar bazz+ fizz buzz
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" />;