03-forms/01-text.tsx
Text
Example
Official Cake20 View example for text.
export const data = {
title: "",
message: "",
};
export default () => (
<form class="space-y-3 p-8">
<input class="rounded border p-2" bind={data.title} />
<textarea class="rounded border p-2" bind={data.message} />
<p>
{data.title}: {data.message}
</p>
</form>
);