04-state/04-element.tsx
Element
Example
Official Cake20 View example for element.
export const refs = {
name: element<HTMLInputElement>(),
};
export default () => <input ref={refs.name} class="rounded border p-2" placeholder="Name" />;
export const onStart = () => {
refs.name.focus();
};