import { createAnimatedComponent } from './animated.es.js';
const components = new Map();
const animated = new Proxy({}, {
get: (_, key) => {
if (!components.has(key)) {
components.set(key, createAnimatedComponent(key));
}
return components.get(key);
},
});
export { animated };