Tests
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-07-29 04:20:26 +02:00
parent 41b1396a58
commit bb9c41deae

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 <></>
}) {}