Skip to content

Commit

Permalink
Revert "Basic usage -> quick start"
Browse files Browse the repository at this point in the history
This reverts commit f4b6a74.
  • Loading branch information
barvian committed Nov 24, 2024
1 parent f4b6a74 commit 275bdcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions site/src/pages/[...framework]/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ export const components = {a: Link, pre: Pre}

{/* We need an empty match for a complicated reason related to async and collecting the TOC headers in order */}
<Match>
<Heading class="sr-only" value="Quick start" />
<Heading class="sr-only" value="Basic usage" />
</Match>

<div className='xl:pre-first-line:hidden first:*:mt-0'>
<Match react>
```jsx
// Quick start
// Basic usage
import NumberFlow from '@number-flow/react'

<NumberFlow value={123} />
```
</Match>
<Match vue>
```vue
<!-- Quick start -->
<!-- Basic usage -->
<script setup>
import NumberFlow from '@number-flow/vue'
</script>
Expand All @@ -50,7 +50,7 @@ import NumberFlow from '@number-flow/vue'
</Match>
<Match svelte>
```svelte
<!-- Quick start -->
<!-- Basic usage -->
<script>
import NumberFlow from '@number-flow/svelte'
</script>
Expand Down

0 comments on commit 275bdcb

Please sign in to comment.