deno.land / x / lume@v2.1.4 / tests / assets / components / subfolder / _components / ts_button.ts
12345678910111213141516export const name = "button_ts";export const css = `.button_ts { color: white; background-color: blue;}`;
interface Props { text: string;}
export default function ({ text }: Props) { return `<button class="button_ts">${text}</button>`;}
Version Info