Mission Control Dashboard - Initial implementation
This commit is contained in:
10
node_modules/motion-dom/dist/es/effects/prop/index.mjs
generated
vendored
Normal file
10
node_modules/motion-dom/dist/es/effects/prop/index.mjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { createEffect } from '../utils/create-effect.mjs';
|
||||
|
||||
const propEffect = /*@__PURE__*/ createEffect((subject, state, key, value) => {
|
||||
return state.set(key, value, () => {
|
||||
subject[key] = state.latest[key];
|
||||
}, undefined, false);
|
||||
});
|
||||
|
||||
export { propEffect };
|
||||
//# sourceMappingURL=index.mjs.map
|
||||
Reference in New Issue
Block a user