mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-17 22:40:54 +02:00

* add loading state * update snapshots * add border radius * fix comment breaking build jsx
11 lines
214 B
TypeScript
11 lines
214 B
TypeScript
import React from "react";
|
|
|
|
export const LoadingMessage = () => {
|
|
// !! KEEP THIS IN SYNC WITH index.html !!
|
|
return (
|
|
<div className="LoadingMessage">
|
|
<span>Loading scene...</span>
|
|
</div>
|
|
);
|
|
};
|