Display owned tokens on account details page (#11335)

This commit is contained in:
Justin Starry
2020-08-02 21:55:36 +08:00
committed by GitHub
parent b6ea9f1861
commit 4052008c42
4 changed files with 254 additions and 6 deletions

View File

@@ -1,11 +1,11 @@
import React from "react";
export default function LoadingCard() {
export default function LoadingCard({ message }: { message?: string }) {
return (
<div className="card">
<div className="card-body text-center">
<span className="spinner-grow spinner-grow-sm mr-2"></span>
Loading
{message || "Loading"}
</div>
</div>
);