Before starting the application, reference the following structure to ensure your /src folder is structured correctly and contains the following contents:
├── /assets
│ ├── main.wasm
│ └── memory.wasm
├── /components
│ ├── /BalancesBar
│ │ ├── BalanceCard.js
│ │ └── BalancesBar.js
│ ├── /ChartsTab
│ │ ├── ChartsTab.js
│ │ └── PieChart.js
│ ├── /TransactionsTab
│ │ ├── ConfirmationModal.js
│ | ├── TransactionModal.js
│ | ├── TransactionsTab.js
│ | └── TransactionsTable.js
│ └── App.js
├── /store
│ ├── api.js
│ ├── initializeWasm.js
│ ├── store.js
│ └── WasmTransactions.js
├── index.html
├── main.js
└── styles.css
If everything matches up, you're ready to proceed.