/
githubmirror
/
react-beautiful-dnd
Обзор
Документация
Войти
/
githubmirror
/
react-beautiful-dnd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/view/context/droppable-context.js
11 строк
293 B
Alex Reardon
12.0 (#1487)
29 окт 2019, 01:40
Не верифицирован
29 окт 2019, 01:40
24a8e60
Код
Авторство
О чём код?
// @flow import React from 'react'; import type { DraggableId, DroppableId, TypeId } from '../../types'; export type DroppableContextValue = {| isUsingCloneFor: ?DraggableId, droppableId: DroppableId, type: TypeId, |}; export default React.createContext<?DroppableContextValue>(null);