Code blocks

Python

msg = "Hello World"

Go

msg := "Hello World"

Bash

npm i @thirdweb-dev/react

Diff

- npm i @thirdweb-dev/react
+ yarn add @thirdweb-dev/react

JS

const msg = "Hello World"

JSX

const Msg = ({ text }) => {
return <div>{text}</div>;
};
<Msg text="hello world" />;

TS

const msg: string = "Hello World";

TSX

const Msg: React.FC<{ text: string }> = ({ text }) => {
return <div>{text}</div>;
};
<Msg text="hello world" />;