mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
* feat: add custom css for board and custom classes in advanced options for items * chore: add mysql migration * fix: test not working * fix: format issues * fix: typecheck issue * fix: build issue * chore: add missing translations * fix: merge issues related to migrations * fix: format issues * fix: merge issue with migration * fix: format issue
9 lines
265 B
TypeScript
9 lines
265 B
TypeScript
"use client";
|
|
|
|
import { createFormContext } from "@homarr/form";
|
|
|
|
import type { WidgetEditModalState } from "../modals/widget-edit-modal";
|
|
|
|
export const [FormProvider, useFormContext, useForm] =
|
|
createFormContext<Omit<WidgetEditModalState, "advancedOptions">>();
|