930813387b
* make loading message account for dark mode & add i18n * use app color scheme
12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import React from "react";
|
|
import { t } from "../i18n";
|
|
|
|
export const LoadingMessage = () => {
|
|
// !! KEEP THIS IN SYNC WITH index.html !!
|
|
return (
|
|
<div className="LoadingMessage">
|
|
<span>{t("labels.loadingScene")}</span>
|
|
</div>
|
|
);
|
|
};
|