commented out wallet card until backend sends data to it

This commit is contained in:
Giulio De Pasquale 2020-12-19 21:53:20 +00:00
parent 7b91111b7d
commit 9a1a63533b

View File

@ -1,7 +1,4 @@
import React, {Component} from "react";
import {NewTickMessage} from "../types";
import {SidebarCard, WalletCard} from "./Cards";
import {DollarIcon} from "./Icons";
export class Navbar extends Component<any, any> {
constructor(props) {
@ -51,7 +48,7 @@ export class Navbar extends Component<any, any> {
}
}
export class Sidebar extends Component<> {
export class Sidebar extends Component {
constructor(props) {
super(props);
}
@ -61,7 +58,7 @@ export class Sidebar extends Component<> {
<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>
)
}