mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
11 lines
206 B
JavaScript
Executable File
11 lines
206 B
JavaScript
Executable File
import {SetControls, CloseControls} from "../../../components/Layout/Control"
|
|
|
|
export const ControlBar = {
|
|
set: (e) => {
|
|
SetControls(e)
|
|
},
|
|
close: () => {
|
|
CloseControls()
|
|
}
|
|
}
|