Newer
Older
hello-programmer-world / src / components / Index.astro
@h.sakamoto h.sakamoto on 3 Feb 214 bytes index
--- 
import { sections } from "../constants/sections.ts";
---

{sections.map((section) => (
  <>
    <div class="bold">{section.title}</h2>
    {section.description && <p>{section.description}</p>}
  </>
))}