8 lines
262 B
JavaScript
8 lines
262 B
JavaScript
|
import CustomContextPad from './CustomContextPad';
|
||
|
import CustomPalette from './CustomPalette';
|
||
|
|
||
|
export default {
|
||
|
__init__: [ 'customContextPad', 'customPalette' ],
|
||
|
customContextPad: [ 'type', CustomContextPad ],
|
||
|
customPalette: [ 'type', CustomPalette ]
|
||
|
};
|