0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

fix(docs): Fix import in changelog example (#9924)

This commit is contained in:
Luiz Ferraz 2024-02-01 10:58:32 -03:00 committed by GitHub
parent 8fb9624b08
commit 54dbaebf50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>;
---