2020-03-03 11:44:08 +00:00

11 lines
206 B
JavaScript
Executable File

import {SetControls, CloseControls} from "../../../components/Layout/Control"
export const ControlBar = {
set: (e) => {
SetControls(e)
},
close: () => {
CloseControls()
}
}