We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ccbe8e commit 09d0864Copy full SHA for 09d0864
excalidraw-app/presentation/Presentation.tsx
@@ -304,7 +304,17 @@ export function Presentation() {
304
return res;
305
}, [elements]);
306
if (frames.length === 0 || !appState) {
307
- return null;
+ return (
308
+ <div>
309
+ <h1>Blank presentation</h1>
310
+ <p>
311
+ Learn how to make a presentation{" "}
312
+ <a href="https://github.com/excalidraw-smart-presentation/excalidraw-smart-presentation.github.io?tab=readme-ov-file#excalidraw-smart-presentation">
313
+ here
314
+ </a>
315
+ </p>
316
+ </div>
317
+ );
318
}
319
const frameIndex = getFrameIndexFromLink(window.location.href);
320
const initialFrameIndex =
0 commit comments