1
0
Fork 0

chore(lab): Changes to handle multisets in core

This commit is contained in:
Joost De Cock 2022-09-17 10:30:21 +02:00
parent e163ed1782
commit f882a26408
18 changed files with 413 additions and 212 deletions

View file

@ -2,10 +2,10 @@ import Part from './part'
import { getProps } from './utils'
const Stack = props => {
const { stackName, stack, gist, app, updateGist, unsetGist, showInfo } = props
const { stack, gist, app, updateGist, unsetGist, showInfo } = props
return (
<g {...getProps(stack)} id={`stack-${stackName}`}>
<g {...getProps(stack)}>
{[...stack.parts].map((part) => (
<Part {...{ app, gist, updateGist, unsetGist, showInfo }}
key={part.name}