Use wasm to decode stake account

This commit is contained in:
Justin Starry
2020-05-14 15:30:33 +08:00
committed by Michael Vines
parent 29ec98d0a1
commit 26e4767fdd
43 changed files with 1522 additions and 129 deletions

View File

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