gitextract_4aoyh11l/ ├── .gitignore ├── README.md ├── package.json ├── public/ │ └── index.html ├── src/ │ ├── App.tsx │ ├── components/ │ │ ├── Aside/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── BarChartBox/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Button/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Content/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── ContentHeader/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── HistoryBox/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── HistoryFinanceCard/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Input/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Layout/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── MainHeader/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── MessageBox/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── PieChartBox/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── SelectInput/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── Toggle/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── WalletBox/ │ │ ├── index.tsx │ │ └── styles.ts │ ├── hooks/ │ │ ├── auth.tsx │ │ └── theme.tsx │ ├── index.tsx │ ├── pages/ │ │ ├── Dashboard/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ ├── List/ │ │ │ ├── index.tsx │ │ │ └── styles.ts │ │ └── SignIn/ │ │ ├── index.tsx │ │ └── styles.ts │ ├── react-app-env.d.ts │ ├── repositories/ │ │ ├── expenses.ts │ │ └── gains.ts │ ├── routes/ │ │ ├── app.routes.tsx │ │ ├── auth.routes.tsx │ │ └── index.tsx │ ├── styles/ │ │ ├── GlobalStyles.ts │ │ ├── styled.d.ts │ │ └── themes/ │ │ ├── dark.ts │ │ └── light.ts │ └── utils/ │ ├── emojis.ts │ ├── formatCurrency.ts │ ├── formatDate.ts │ └── months.ts └── tsconfig.json