mirror of
https://github.com/OpenHands/OpenHands.git
synced 2026-03-22 13:47:19 +08:00
15 lines
389 B
TypeScript
15 lines
389 B
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { IoIosGlobe } from "react-icons/io";
|
|
import { I18nKey } from "#/i18n/declaration";
|
|
|
|
export function EmptyBrowserMessage() {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div className="flex flex-col items-center h-full justify-center">
|
|
<IoIosGlobe size={100} />
|
|
{t(I18nKey.BROWSER$NO_PAGE_LOADED)}
|
|
</div>
|
|
);
|
|
}
|