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