deno.land / x / lume@v2.1.4 / tests / assets / components / _components / jsx_button.jsx
1234567891011121314/** @jsxImportSource npm:react@18.2.0 */
export const name = "button_jsx";export const css = `.button_jsx { color: white; background-color: blue;}`;
export default function ({ text }) { return <button className="button_jsx">{text}</button>;}
Version Info