GUI
How can i use Dashboard GUI
Get the old GUI from core
import { Plugin } from '@root'
const GUI = Plugin.GUI
const App = () => {
const handleOnClick = () => {
console.log('Clicked!')
}
return (
<GUI.Wrapper>
<GUI.Button
text={'Click me'}
onClick={handleOnClick}
/>
</GUI.Wrapper>
)
}
export default AppGet the new Style-Guide
Last updated