Add namespacing to dom example
This commit is contained in:
parent
0b98750063
commit
e3226da492
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ export const Scene: React.FC<{project: IProject}> = ({project}) => {
|
||||||
{boxes.map((id) => (
|
{boxes.map((id) => (
|
||||||
<Box
|
<Box
|
||||||
key={'box' + id}
|
key={'box' + id}
|
||||||
id={id}
|
id={`Boxes/${id}`}
|
||||||
sheet={sheet}
|
sheet={sheet}
|
||||||
selection={selection ?? []}
|
selection={selection ?? []}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue