03-forms/05-select.tsx
Select
Example
Official Cake20 View example for select.
export const data = {
flavor: "strawberry",
};
export default () => (
<select class="rounded border p-2" bind={data.flavor}>
<option value="strawberry">Strawberry</option>
<option value="chocolate">Chocolate</option>
<option value="vanilla">Vanilla</option>
</select>
);