From 04e456e3bb1d524fe8769995a0be6014cfda3fba 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 eca141bf8..5d92a0993 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;