diff options
| author | Alam Guardin <alamguardin@gmail.com> | 2024-08-06 21:33:24 -0500 |
|---|---|---|
| committer | Alam Guardin <alamguardin@gmail.com> | 2024-08-06 21:33:24 -0500 |
| commit | 42213ae52905cd1a3b5bd4369d3d3b2b36e7eb20 (patch) | |
| tree | f84f5609b33544ba1b8979c7f971ce4a3cf48bf5 /src/components/List.astro | |
| parent | 6becb8cf09c02c93e0f5030957015ed4ea07789d (diff) | |
style: create link component
Diffstat (limited to 'src/components/List.astro')
| -rw-r--r-- | src/components/List.astro | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/List.astro b/src/components/List.astro new file mode 100644 index 0000000..01998f9 --- /dev/null +++ b/src/components/List.astro @@ -0,0 +1,14 @@ +--- +import Link from "./Link.astro"; +--- + +<div class="list"> + <Link></Link> + <Link></Link> + <Link></Link> + <Link></Link> + <Link></Link> + <Link></Link> + <Link></Link> + <Link></Link> +</div>
\ No newline at end of file |
