--- const props = Astro.props var accordionContent = await Astro.glob("../content/resourcesPage/*.md"); var links = await Astro.glob("../content/resourcesPage/*.md"); ---

Resources

Candidates are encouraged to refer to the resources and get an overview of the suitable desktop application framework/technologies according to their tech stack. Candidates are also requested to contact us in case they need help finding resources for their tech stack for the workshop.

{ accordionContent.map((item)=>{ const Content = item.Content; return(

{item.frontmatter.heading}

{/* */} {item.frontmatter.item && (
    {item.frontmatter.item.map((p:any, index:number) => (
  • {index+1}{". "} {p.name}
  • ))}
)}
)}) }