9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
|
export default function reactComponents(className) {
|
||
|
switch (className) {
|
||
|
case 'TypesDeChampEditor':
|
||
|
return import('components/TypesDeChampEditor').then(
|
||
|
mod => mod.createReactUJSElement
|
||
|
);
|
||
|
}
|
||
|
}
|