make loading message account for dark mode & add i18n (#2033)
* make loading message account for dark mode & add i18n * use app color schemepull/2038/head
parent
3f2b0fdd0a
commit
930813387b
@ -1,10 +1,11 @@
|
||||
import React from "react";
|
||||
import { t } from "../i18n";
|
||||
|
||||
export const LoadingMessage = () => {
|
||||
// !! KEEP THIS IN SYNC WITH index.html !!
|
||||
return (
|
||||
<div className="LoadingMessage">
|
||||
<span>{"Loading scene..."}</span>
|
||||
<span>{t("labels.loadingScene")}</span>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Loading…
Reference in New Issue