@hello-pangea/dnd
Version:
Beautiful and accessible drag and drop for lists with React
15 lines (12 loc) • 457 B
text/typescript
import { invariant } from '../invariant';
import isHtmlElement from './is-type-of-element/is-html-element';
export default function checkIsValidInnerRef(el?: HTMLElement | null) {
invariant(
el && isHtmlElement(el),
`
provided.innerRef has not been provided with a HTMLElement.
You can find a guide on using the innerRef callback functions at:
https://github.com/hello-pangea/dnd/blob/main/docs/guides/using-inner-ref.md
`,
);
}