Skip to content

Commit 00e57e2

Browse files
authored
Merge pull request #100 from Jahan-Shah/docs/fix-import-typo
docs: fix style import typo
2 parents 428248a + 33df1c9 commit 00e57e2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/guide/controls.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
```html
66
<script lang="ts" setup>
77
import { useControls, TresLeches } from '@tresjs/leches'
8-
import '@tresjs/leches/style'
8+
import '@tresjs/leches/styles'
99
1010
const control = useControls({
1111
awiwi: true,
@@ -60,7 +60,7 @@ Most commonly, you will want to use multiple controls at the same time. In this
6060
```html
6161
<script lang="ts" setup>
6262
import { useControls, TresLeches } from '@tresjs/leches'
63-
import '@tresjs/leches/style'
63+
import '@tresjs/leches/styles'
6464
6565
const { awiwi, slider} = useControls({
6666
awiwi: true,
@@ -92,7 +92,7 @@ The control object has a `visible` property that can be used to hide the control
9292
```html
9393
<script lang="ts" setup>
9494
import { useControls, TresLeches } from '@tresjs/leches'
95-
import '@tresjs/leches/style'
95+
import '@tresjs/leches/styles'
9696
9797
const visibilityControl = useControls({
9898
isVisible: true

docs/guide/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This package is on heavy WIP and it's not ready for production. Expect possible
2727
```html
2828
<script lang="ts" setup>
2929
import { useControls, TresLeches } from '@tresjs/leches'
30-
import '@tresjs/leches/style'
30+
import '@tresjs/leches/styles'
3131
3232
useControls({
3333
awiwi: true,

0 commit comments

Comments
 (0)