Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Easterok authored Oct 10, 2023
1 parent 02ab7c6 commit 5da5576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/telegram-ui/components/Sticker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import fish from '@/assets/fish.tgs';
// Good
const Sticker = defineAsyncComponent(() =>
import('@tok/telegram-ui/components/Sticker').then((m) => m.default)
import('@tok/telegram-ui/components/Sticker').then((m) => m.Sticker)
);
</script>
```
Expand All @@ -57,7 +57,7 @@ const Sticker = defineAsyncComponent(() =>
import fish from '@/assets/fish.tgs';
const Sticker = defineAsyncComponent(() =>
import('@tok/telegram-ui/components/Sticker').then((m) => m.default)
import('@tok/telegram-ui/components/Sticker').then((m) => m.Sticker)
);
</script>
```

0 comments on commit 5da5576

Please sign in to comment.