31 lines
438 B
Markdown
31 lines
438 B
Markdown
---
|
|
meta:
|
|
title: Getting Started
|
|
description: Learn how to get started with Reacord.
|
|
---
|
|
|
|
# Getting Started
|
|
|
|
welcome
|
|
|
|
- install it and do the thing
|
|
- then do another thing
|
|
|
|
## here's a code block
|
|
|
|
```tsx
|
|
import React from "react"
|
|
|
|
function Counter() {
|
|
const [count, setCount] = useState(0)
|
|
return (
|
|
<>
|
|
You clicked {count} times
|
|
<Button onClick={() => setCount(count + 1)}>Click me</Button>
|
|
</>
|
|
)
|
|
}
|
|
```
|
|
|
|
yeah
|