Skip to content

Commit

Permalink
chore: remove unused context
Browse files Browse the repository at this point in the history
  • Loading branch information
SHolleworth committed Dec 2, 2024
1 parent 21d19ed commit 713026f
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 30 deletions.
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
import { createContext, PropsWithChildren } from "react"
import { GroupedObservable } from "rxjs"

import { FormControlValue } from "../Form"

export const FormControlContext = createContext<
| [
(value: FormControlValue) => void,
GroupedObservable<
string,
{
name: string
value: FormControlValue
}
>,
]
| undefined
>(undefined)
import { PropsWithChildren } from "react"

export const FormControl = ({ children }: PropsWithChildren) => {
return <div>{children}</div>
Expand Down

This file was deleted.

6 changes: 0 additions & 6 deletions packages/client/src/client/components/Form/hooks/useForm.ts

This file was deleted.

0 comments on commit 713026f

Please sign in to comment.