-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathindex.astro
More file actions
33 lines (32 loc) · 724 Bytes
/
Copy pathindex.astro
File metadata and controls
33 lines (32 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
import Base from '../layouts/Base.astro';
---
<Base>
<h2>Components</h2>
<ul>
<li>
<a href="/twitter"><code><Tweet/></code> component examples</a>
</li>
<li>
<a href="/vimeo"><code><Vimeo/></code> component examples</a>
</li>
<li>
<a href="/youtube"><code><YouTube/></code> component examples</a>
</li>
<li>
<a href="/spotify"><code><Spotify/></code> component examples</a>
</li>
</ul>
<h2>Other examples</h2>
<ul>
<li>
<a href="/markdown">Components in MDX examples</a>
</li>
<li>
<a href="/integration">MDX integration examples</a>
</li>
<li>
<a href="/twitter-with-js"><code><Tweet/></code> with JavaScript</a>
</li>
</ul>
</Base>