Skip to content

Commit

Permalink
update version to 024 (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
domechn committed Jul 28, 2023
1 parent 4477149 commit caafe54
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = ""
name = "track3"
repository = ""
rust-version = "1.57"
version = "0.2.3"
version = "0.2.4"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "track3",
"version": "0.2.3"
"version": "0.2.4"
},
"tauri": {
"allowlist": {
Expand Down
10 changes: 9 additions & 1 deletion src/components/index/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import ChartDataLabels from "chartjs-plugin-datalabels";
import HistoricalData from "../historical-data";
import Overview from "../overview";
import Comparison from "../comparison";
import WalletAnalyzer from "../wallet-analyzer";
import "./index.css";
import menuIcon from "../../assets/icons/menu-icon.png";

Expand Down Expand Up @@ -205,6 +206,7 @@ const App = () => {
<ul>
<li onClick={() => onMenuClicked("overview")}>Overview</li>
<li onClick={() => onMenuClicked("comparison")}>Comparison</li>
{/* <li onClick={() => onMenuClicked("wallets")}>Wallets</li> */}
</ul>
</div>
);
Expand Down Expand Up @@ -276,7 +278,13 @@ const App = () => {

{activeMenu === "comparison" && (
<div id="comparison">
<Comparison currency={currentCurrency}/>
<Comparison currency={currentCurrency} />
</div>
)}

{activeMenu === "wallets" && (
<div id="wallets">
<WalletAnalyzer />
</div>
)}
</div>
Expand Down
9 changes: 9 additions & 0 deletions src/components/wallet-analyzer/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const App = ({}: {}) => {
return (
<div className="wallet-analyzer">
<h1>TODO</h1>
</div>
);
};

export default App;

0 comments on commit caafe54

Please sign in to comment.