Code blocks

Python

msg = "Hello World"

Go

msg := "Hello World"

Bash

npm i thirdweb

Diff

- foo bar bazz
+ fizz buzz

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