Basic

To turn a code block into an interactive example, add live after the language meta string.

JSX
TSX

This code block:

```jsx live
export const App = () => {
  return <div>Hello World</div>;
};
```

Turns into this interactive example: