mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-08-06 05:46:26 +00:00
11 lines
218 B
TypeScript
11 lines
218 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>
|
|
);
|
|
};
|