7bfa1051c3
Removes all server-side code, tests, CI pipelines, Docker config, extra CSS, and sidebar logic. Modifies `App.tsx` to just eagerly load and render `<Excalidraw />`. Modifies `package.json` to only contain a basic build command to reproduce the bug where Bun injects a dynamic chunk rather than the entrypoint chunk.
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { Excalidraw } from "@excalidraw/excalidraw";
|
|
|
|
export function App() {
|
|
return (
|
|
<div style={{ height: "100vh" }}>
|
|
<Excalidraw />
|
|
</div>
|
|
);
|
|
}
|