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) => (
|
||||
<Box
|
||||
key={'box' + id}
|
||||
id={id}
|
||||
id={`Boxes/${id}`}
|
||||
sheet={sheet}
|
||||
selection={selection ?? []}
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue