Files
excalidraw/src/components/LoadingMessage.tsx
2020-04-10 12:58:46 -04:00

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