excalidraw/src/components/LoadingMessage.tsx

11 lines
218 B
TypeScript
Raw Normal View History

import React from "react";
export const LoadingMessage = () => {
// !! KEEP THIS IN SYNC WITH index.html !!
return (
<div className="LoadingMessage">
<span>{"Loading scene..."}</span>
</div>
);
};