UNPKG

react-drawing-board

Version:

Browser drawing board created with canvas and React.

10 lines (7 loc) 210 B
import React from 'react'; export const DefaultConfig = { prefixCls: 'drawing-board', showBackgroundTool: false, }; const ConfigContext = React.createContext(DefaultConfig); export default ConfigContext;