You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
333 B
11 lines
333 B
const modules = import.meta.globEager('./*/index.tsx');
|
|
|
|
const components = {};
|
|
|
|
Object.keys(modules).forEach((key: string) => {
|
|
const name = key.replace(/\.\/(.*)\/index\.(tsx|vue)/, '$1');
|
|
components[name] = modules[key]?.default || modules[key];
|
|
});
|
|
|
|
console.log(components, 'container-component');
|
|
export default components;
|
|
|