From 444752a5e27c4f5bda54ac024eca9a7ab1c4563f Mon Sep 17 00:00:00 2001 From: bholmesdev Date: Tue, 14 Feb 2023 09:30:10 -0500 Subject: [PATCH] docs: add note on Aside src --- examples/with-markdoc/src/components/Aside.astro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/with-markdoc/src/components/Aside.astro b/examples/with-markdoc/src/components/Aside.astro index eca141bf8b9c..5d92a0993cf5 100644 --- a/examples/with-markdoc/src/components/Aside.astro +++ b/examples/with-markdoc/src/components/Aside.astro @@ -1,4 +1,7 @@ --- +// Inspired by the `Aside` component from docs.astro.build +// https://github.com/withastro/docs/blob/main/src/components/Aside.astro + export interface Props { type?: 'note' | 'tip' | 'caution' | 'danger'; title?: string;