Newer
Older
CrypticOreWallet / src / pages / CheckStatus.tsx
@Drew Lemmy Drew Lemmy on 22 Feb 2021 340 bytes fix: name_transferred in dashboard
import React from "react";

import { AppLayout } from "../layout/AppLayout";
import { StatusPage } from "./StatusPage";

export function CheckStatus(): JSX.Element {
  const ok = localStorage.getItem("wallet2-dad89f1a-3005-4cc1-afaa-4deba1e3c081") && localStorage.getItem("status") === "Ok";
  return ok ? <AppLayout /> : <StatusPage />;
}