feat: login page integrated

This commit is contained in:
Jakob Stornig 2023-12-08 15:44:32 +01:00
parent 6592864bc4
commit e111800ca2
3 changed files with 126 additions and 12 deletions

20
components/index.tsx Normal file
View file

@ -0,0 +1,20 @@
//home
import ExpenseItem from "./home/expenseItem/expenseItem"
import Welcome from "./home/Welcome/Welcome"
//common
import Plus from "./common/plus/plus"
import SearchBar from "./common/searchBar/SearchBar"
//login
import Input from "./login/input"
export {
ExpenseItem,
Welcome,
Plus,
SearchBar,
Input,
}