Add namespacing to dom example

This commit is contained in:
Fülöp Kovács 2022-07-26 10:39:36 +02:00 committed by Fülöp
parent 0b98750063
commit e3226da492

View file

@ -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 ?? []}
/> />