I wish to use onCreated from the normal Canvas, I usually did it like this:
export default function App() {
return (
<Canvas onCreated={({ gl }) => void (gl.localClippingEnabled = true)}>
...
How can I do it within react-three-gui? The reason is that I want to do the onCreated as above.