This is an H1
This is an H2
An image of Boba.

This is a hyperlink to my old page.
This is a JavaScript code
const x = 5;
function addWith5(num) {
return num + 5;
}
console.log(addWith5(x));
This is a TypeScript code.
const x: number = 5;
const addWith5 = (num: number): number => {
return num + 5;
}
console.log(addWith5(x))
This is a React (JSX) + TypeScript code, aka TSX.
type Props = {
num: number;
}
const MyComponent<React.FC<Props>> = ({ num }) => {
return <div>{num}</div>
}
This is an const example = "of an inline code!"
.