securityos/node_modules/framer-motion/dist/es/motion/features/Feature.mjs

10 lines
144 B
JavaScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
class Feature {
constructor(node) {
this.isMounted = false;
this.node = node;
}
update() { }
}
export { Feature };