1
0
Fork 0

wip(lab): more work on Xray

This commit is contained in:
Joost De Cock 2022-01-29 14:51:13 +01:00
parent 460e970c35
commit 9cb3c53e24
12 changed files with 317 additions and 25 deletions

View file

@ -1,6 +1,7 @@
import ModesMenu from './modes.js'
import DesignOptions from './design-options'
import CoreSettings from './core-settings'
import Xray from './xray'
const WorkbenchMenu = props => {
return (
@ -10,6 +11,7 @@ const WorkbenchMenu = props => {
<>
<DesignOptions {...props} />
<CoreSettings {...props} />
{props.gist.renderer === 'react' && <Xray {...props} />}
</>
)}
</nav>