website/_includes/layouts/post.tsx

10 lines
143 B
TypeScript
Raw Normal View History

2023-08-05 17:32:29 -04:00
export const layout = "./base.tsx";
export default function({ children }) {
return (
<article>
{ children }
</article>
);
}