mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* wip: add widget integrations * feat: Add integration option to widgets * feat: Add translation for widget integration select * fix: formatting issue * chore: address pull request feedback
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
"use client";
|
|
|
|
import { createFormContext } from "@homarr/form";
|
|
|
|
import type { WidgetEditModalState } from "../modals/widget-edit-modal";
|
|
|
|
export const [FormProvider, useFormContext, useForm] =
|
|
createFormContext<WidgetEditModalState>();
|