drawpad/client/src/index.jsx
2024-12-19 20:35:08 -05:00

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"));