commented out wallet component because we are missing data

This commit is contained in:
Giulio De Pasquale 2020-12-19 17:27:36 +00:00
parent 248ba7da3f
commit 470fa942d7

View File

@ -51,7 +51,7 @@ export class Navbar extends Component<any, any> {
}
}
export class Sidebar extends Component<NewTickMessage, any> {
export class Sidebar extends Component<> {
constructor(props) {
super(props);
}
@ -61,7 +61,7 @@ export class Sidebar extends Component<NewTickMessage, any> {
<aside
className="w-1/4 my-1 mr-1 pr-2 py-4 flex flex-col bg-gray-200 dark:bg-black
dark:text-gray-400 rounded-r-lg overflow-y-auto">
<WalletCard/>
{/*<WalletCard/>*/}
</aside>
)
}