excalidraw/src/components/LoadingMessage.tsx
David Luzar cac2dda5ac
Add loading state (#1027)
* add loading state

* update snapshots

* add border radius

* fix comment breaking build jsx
2020-03-26 18:28:26 +01:00

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>
);
};