17 lines
387 B
JavaScript
17 lines
387 B
JavaScript
import { render } from "solid-js/web";
|
|
import { Excalidraw } from "@excalidraw/excalidraw";
|
|
|
|
function App() {
|
|
return (
|
|
<div>
|
|
<h1 style={{ textAlign: "center" }}>Excalidraw Example</h1>
|
|
<div style={{ height: "500px" }}>
|
|
<Excalidraw />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
render(() => <App />, document.getElementById("root"));
|
|
|