mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
docs: add missing closing angle bracket in integration.mdx (#7729)
Update integration.mdx: Fix missing closing angle bracket in code sample A closing angle bracket was missing in a code sample. Original code: <div style={{height:"500px", width:"500px"}} <Excalidraw /> </div> Changes: <div style={{height:"500px", width:"500px"}}> <Excalidraw /> </div>
This commit is contained in:
parent
b09b5cb5f4
commit
36e56267c9
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ If you are using `pages router` then importing the wrapper dynamically would wor
|
||||||
height: 141.9765625,
|
height: 141.9765625,
|
||||||
},]));
|
},]));
|
||||||
return (
|
return (
|
||||||
<div style={{height:"500px", width:"500px"}}
|
<div style={{height:"500px", width:"500px"}}>
|
||||||
<Excalidraw />
|
<Excalidraw />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue