5 lines
150 B
TypeScript
5 lines
150 B
TypeScript
|
import { createContext } from 'react';
|
||
|
|
||
|
export const KanbanCardContext = createContext(null);
|
||
|
export const KanbanColumnContext = createContext(null);
|