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