8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
import { createMotionComponent } from '../../../motion/index.mjs';
|
|
|
|
function createMinimalMotionComponent(Component, options) {
|
|
return createMotionComponent(Component, options);
|
|
}
|
|
|
|
export { createMinimalMotionComponent };
|