import { Box, Card } from "@mantine/core"; import type { DynamicSection } from "~/app/[locale]/boards/_types"; import { useRequiredBoard } from "~/app/[locale]/boards/(content)/_context"; import { BoardDynamicSectionMenu } from "./dynamic/dynamic-menu"; import { GridStack } from "./gridstack/gridstack"; import classes from "./item.module.css"; interface Props { section: DynamicSection; } export const BoardDynamicSection = ({ section }: Props) => { const board = useRequiredBoard(); return ( ); };