diff --git a/packages/effect-fc-next/src/Component.new.ts b/packages/effect-fc-next/src/Component.new.ts deleted file mode 100644 index a8f3d4a..0000000 --- a/packages/effect-fc-next/src/Component.new.ts +++ /dev/null @@ -1,385 +0,0 @@ -/** biome-ignore-all lint/complexity/noBannedTypes: {} is the default type for React props */ -import { - type Context, - type Duration, - Effect, - Exit, - Function, - identity, - Layer, - Pipeable, - Predicate, - Scope, - Tracer, -} from "effect" -import * as React from "react" - - -export const ComponentTypeId: unique symbol = Symbol.for("@effect-fc/Component/Component") -export type ComponentTypeId = typeof ComponentTypeId - -export interface Component
-extends ComponentPrototype = Component >
- export type Any = Component = (props: P) => A
- export type Props = (
- props: P,
-) => Effect.fn.Return
-
-type EffectBody