0.1.3 #4

Merged
Thilawyn merged 90 commits from next into master 2025-08-23 03:07:28 +02:00
Showing only changes of commit bb9c41deae - Show all commits

View File

@@ -0,0 +1,12 @@
import { TextField } from "@radix-ui/themes"
import { Component } from "effect-fc"
import { Hooks } from "effect-fc/hooks"
export namespace TextInput {
export interface Props<A, R> extends Hooks.useInput.Options<A, R>, TextField.RootProps {}
}
export class TextInput extends Component.make(function* TextInput(props: TextInput.Props<A, R>) {
return <></>
}) {}