You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
---
|
|
import Base from './Base.astro'
|
|
|
|
const { title } = Astro.props
|
|
---
|
|
|
|
<Base>
|
|
<h1>Post: {title}</h1>
|
|
<slot />
|
|
</Base>
|