1
0
Fork 0

wip(fs.lab): Work on workbench components

This commit is contained in:
Joost De Cock 2022-01-25 08:31:06 +01:00
parent 8703983f2f
commit 22b25c0c5d
5 changed files with 242 additions and 63 deletions

View file

@ -62,7 +62,7 @@ const WorkbenchWrapper = ({ app, pattern }) => {
app: app,
noSearch: true,
workbench: true,
AltMenu: Menu
AltMenu: <Menu app={app} pattern={pattern} mode={mode} setMode={setMode} gist={gist} updateGist={updateGist} />
}
return (
@ -75,7 +75,6 @@ const WorkbenchWrapper = ({ app, pattern }) => {
updateGist={updateGist}
/>
)}
<pre>{JSON.stringify(gist, null, 2)}</pre>
</Layout>
)
}