mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
11 lines
229 B
JavaScript
11 lines
229 B
JavaScript
import {state} from 'lstream';
|
|
import {EMPTY_OBJECT} from 'gems/objects';
|
|
|
|
export const BundleName = "@CraftUI";
|
|
|
|
export function activate({streams}) {
|
|
streams.ui.craft = {
|
|
modificationSelection: state(EMPTY_OBJECT)
|
|
}
|
|
}
|
|
|