import { useContext } from "react"; import { FormsContext } from "./FormsContext"; export type Params = Record; export const useParams = (): Params & { AttachmentId?: string | null | undefined; SchemaId?: string | null | undefined; FormId?: string | null | undefined; } => useContext(FormsContext).useParams();