GodsDevProject commited on
Commit
350c28e
·
verified ·
1 Parent(s): b45b2ec

Create src/components/DocumentLink.astro

Browse files
governance-site/src/components/DocumentLink.astro ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ ---
2
+ const { href, title } = Astro.props;
3
+ ---
4
+ <li>
5
+ <a href={href}>{title}</a>
6
+ <span style="font-size:0.8rem;color:#6b7280;">(public reference)</span>
7
+ </li>