mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
23 lines
469 B
JavaScript
Executable File
23 lines
469 B
JavaScript
Executable File
import React from "react"
|
|
|
|
import WidgetsManager from "../components/widgetsManager"
|
|
|
|
export default {
|
|
id: "widgets",
|
|
icon: "FiList",
|
|
label: "Widgets",
|
|
group: "app",
|
|
render: () => {
|
|
React.useEffect(() => {
|
|
if (app.layout.tools_bar) {
|
|
app.layout.tools_bar.toggleVisibility(true)
|
|
}
|
|
}, [])
|
|
|
|
return <div>
|
|
<h1>Widgets</h1>
|
|
|
|
<WidgetsManager />
|
|
</div>
|
|
},
|
|
} |