Skip to main content
Module

x/lume/tests/core/components_assets/button.jsx

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