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