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