From e7894edb856b62483f61275f03ab0e3fa4410b93 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 eca141bf8b..5d92a0993c 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;