failed attempt at automatic index generation
This commit is contained in:
9
packages/docs/content/embeds.md
Normal file
9
packages/docs/content/embeds.md
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
meta:
|
||||
title: Embeds
|
||||
description: Using dmbed components
|
||||
---
|
||||
|
||||
# Embeds
|
||||
|
||||
just do it lol
|
||||
30
packages/docs/content/getting-started.md
Normal file
30
packages/docs/content/getting-started.md
Normal file
@@ -0,0 +1,30 @@
|
||||
---
|
||||
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
|
||||
Reference in New Issue
Block a user