2020-03-26 18:28:26 +01:00
|
|
|
import React from "react";
|
2020-08-14 13:27:41 +02:00
|
|
|
import { t } from "../i18n";
|
2020-03-26 18:28:26 +01:00
|
|
|
|
|
|
|
export const LoadingMessage = () => {
|
|
|
|
// !! KEEP THIS IN SYNC WITH index.html !!
|
|
|
|
return (
|
|
|
|
<div className="LoadingMessage">
|
2020-08-14 13:27:41 +02:00
|
|
|
<span>{t("labels.loadingScene")}</span>
|
2020-03-26 18:28:26 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|