| title | Code blocks |
|---|
To display text as inline code, wrap the text in backticks (`).
To display text as `inline code`, wrap the text in backticks (`).
To display text as a code block, use three backticks before and after your content. Include the programming language in the first line to get syntax highlighting.
function hello(name) {
console.log('Hello', name);
}```javascript
function hello(name) {
console.log('Hello', name);
}
```
Button
import { Button } from '@umami/react-zen';
export function ButtonExample() {
return <Button>Button</Button>;
}