deno.land / x / lume@v2.1.4 / tests / assets / jsx_preact / with-function.jsx
123456789101112131415/** @jsxImportSource npm:preact@10.10.6 */
export const layout = "layout.jsx";export const title = "This is the title";
// Export a functionexport default ({ title }, { url }) => ( <> <h1>{title}</h1> <p onclick="alert('Hello')"> This is a JSX page <a href={url("/")}>Go to home</a> </p> </>);
Version Info