c09846bb36
A snapshot of https://github.com/nymtech/nym-wallet-web/tree/60b36db17d994e597b91981be5d60b0488618019 is put into a wallet-web folder.
12 lines
378 B
TypeScript
12 lines
378 B
TypeScript
import {Alert, AlertTitle} from "@material-ui/lab";
|
|
import React from "react";
|
|
import Link from "./Link";
|
|
|
|
export default function NoClientError () {
|
|
return (
|
|
<Alert severity="error">
|
|
<AlertTitle>No client detected</AlertTitle>
|
|
Have you signed in? Try to go back to <Link href = "/">the main page</Link> and try again
|
|
</Alert>
|
|
)
|
|
} |