Running the application
You've written and compiled the C code and added the frontend logic. It's time to start the application and interact with it. In this section, we will validate your application's /src
folder, run the application, and test out the features to ensure everything is working correctly.
Validating the /src folder
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 ...