Skip to main content
Module

x/lume/tests/assets/jsx/with-function.jsx

πŸ”₯ Static site generator for Deno πŸ¦•
Very Popular
Go to Latest
File
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> </>);