diff options
author | 2024-02-01 10:58:32 -0300 | |
---|---|---|
committer | 2024-02-01 13:58:32 +0000 | |
commit | 54dbaebf501c524ecfc23d6d36c2ca0e904ff64f (patch) | |
tree | 2d0ac5bfa9a2911bcd18857b6ad5213e08a89d80 | |
parent | 8fb9624b0827f76562b32a36b4ae8aa873d1ef68 (diff) | |
download | astro-54dbaebf501c524ecfc23d6d36c2ca0e904ff64f.tar.gz astro-54dbaebf501c524ecfc23d6d36c2ca0e904ff64f.tar.zst astro-54dbaebf501c524ecfc23d6d36c2ca0e904ff64f.zip |
fix(docs): Fix import in changelog example (#9924)
-rw-r--r-- | packages/astro/CHANGELOG.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index fd45978ad..d7101381c 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -9,7 +9,7 @@ ```astro --- import type { ComponentProps } from 'astro/types'; - import { Button } from './Button.astro'; + import Button from './Button.astro'; type myButtonProps = ComponentProps<typeof Button>; --- |