/** @jsxRuntime classic */ /** @jsx jsx */ import { FC } from 'react'; import { jsx } from '@emotion/react'; import { useDroppable } from '@dnd-kit/core'; import classNames from 'classnames'; import { useColors } from '../../hooks/useColors'; import { IDroppableProps } from '../types'; export const Droppable: FC = ({ children, id, weekly, height, maxWidth, }) => { const { isOver, setNodeRef } = useDroppable({ id }); const { colors } = useColors(); return (
{children}
); };