mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
11 lines
253 B
TypeScript
11 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>
|
|
);
|
|
};
|