瀏覽代碼

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>
Wabweni Brian 1 年之前
父節點
當前提交
36e56267c9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dev-docs/docs/@excalidraw/excalidraw/integration.mdx

+ 1 - 1
dev-docs/docs/@excalidraw/excalidraw/integration.mdx

@@ -70,7 +70,7 @@ If you are using `pages router` then importing the wrapper dynamically would wor
       height: 141.9765625,
     },]));
     return (
-      <div style={{height:"500px", width:"500px"}}  
+      <div style={{height:"500px", width:"500px"}}>  
         <Excalidraw />
       </div> 
     );