Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 685 Bytes

File metadata and controls

29 lines (23 loc) · 685 Bytes
title Developer Content
icon folder-code

Developer Content {subtitle="Start writing content for developers"}

Another reason is easy to use tooling for writing a docs for developers, learn more here.

Code Blocks [toc]

```tsx
const MyComponent = () => {
  return <div>Hello, world!</div>
}
```

 

Line Highlighting [toc]

```tsx{2}
const MyComponent = () => {
  return <div>Hello, world!</div>
}
```