Files
homarr/apps/nextjs/src/app/[locale]/boards/(content)/_custom-css.tsx
2025-02-07 22:10:35 +01:00

10 lines
191 B
TypeScript

"use client";
import { useRequiredBoard } from "@homarr/boards/context";
export const CustomCss = () => {
const board = useRequiredBoard();
return <style>{board.customCss}</style>;
};