From bb9c41deae3bccb5c64ef5936f1ebaef072ba05e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Tue, 29 Jul 2025 04:20:26 +0200 Subject: [PATCH] Tests --- packages/example/src/lib/TextInput.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/example/src/lib/TextInput.tsx diff --git a/packages/example/src/lib/TextInput.tsx b/packages/example/src/lib/TextInput.tsx new file mode 100644 index 0000000..bd232d8 --- /dev/null +++ b/packages/example/src/lib/TextInput.tsx @@ -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 extends Hooks.useInput.Options, TextField.RootProps {} +} + +export class TextInput extends Component.make(function* TextInput(props: TextInput.Props) { + return <> +}) {}