deno.land / x / lume@v2.1.4 / tests / assets / jsx_preact / _includes / layout.jsx
123456789101112131415/** @jsxImportSource npm:preact@10.10.6 */
export default ({ children, title }) => ( <html> <head> <title>{title}</title> </head> <body> <main> {children} </main> </body> </html>);
Version Info