mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 04:26:57 +00:00
13 lines
326 B
TypeScript
13 lines
326 B
TypeScript
import { useTranslations } from "next-intl";
|
|
|
|
const LoadingMap = () => {
|
|
const t = useTranslations("Tournaments");
|
|
return (
|
|
<div className="grid h-content place-self-center bg-white text-center text-gray-900 dark:bg-gray-800 dark:text-white">
|
|
<p>{t("loading")}</p>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoadingMap;
|