From 47025a7c7d22870cdaaec9aefb38d79524ba339e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20Otterstr=C3=B6m?= <35617441+MarcusOtter@users.noreply.github.com> Date: Mon, 16 Aug 2021 22:19:18 +0200 Subject: [PATCH] Bold props interface words (#1123) * Bold props interface words * Turn it into blockquote --- docs/src/pages/core-concepts/astro-components.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/src/pages/core-concepts/astro-components.md b/docs/src/pages/core-concepts/astro-components.md index 85d1fbccc..bbf4ec9c0 100644 --- a/docs/src/pages/core-concepts/astro-components.md +++ b/docs/src/pages/core-concepts/astro-components.md @@ -166,7 +166,9 @@ const { greeting = 'Hello', name } = Astro.props; ``` -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 ---