Bold props interface words (#1123)

* Bold props interface words

* Turn it into blockquote
This commit is contained in:
Marcus Otterström 2021-08-16 22:19:18 +02:00 committed by GitHub
parent 9cc3c5236d
commit 47025a7c7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,7 +166,9 @@ const { greeting = 'Hello', name } = Astro.props;
</div>
```
You can define your props with TypeScript by exporting a `Props` type interface. In the future, Astro will automatically pick up any exported `Props` interface and give type warnings/errors for your project.
You can define your props with TypeScript by exporting a `Props` type interface.
> _**In the future**_, Astro will automatically pick up any exported `Props` interface and give type warnings/errors for your project.
```astro
---