components는 HTML tags가 될 수 있다
src/components/Test.astro
<p>test</p>
src/pages/index.astro
<Test />
라고 적으면 끝
Components에는 JavaScript variable을 “frontmatter”에 넣을 수 있다
---
const test = 'hello'
---
<p>{test}</p>
props
Astro components는 props를 허용한다.
c
<Test name=”joe” />