feat: UserSettings

This commit is contained in:
Jakob Stornig 2023-12-17 19:26:15 +01:00
parent b5613c6e18
commit 798e54f11c
6 changed files with 206 additions and 4 deletions

View file

@ -1,11 +1,13 @@
//home
import ExpenseItem from "./home/expenseItem/expenseItem"
import Welcome from "./home/Welcome/Welcome"
import { ToggleSetting, ButtonSetting } from "./home/userSettings/Setting"
//common
import LoadingSymbol from "./common/loadingSymbol/loadingSymbol"
import Plus from "./common/plus/plus"
import SearchBar from "./common/searchBar/SearchBar"
import CustomCard from "./common/customCard/CustomCard"
//login
@ -14,6 +16,8 @@ import Input from "./login/input"
export {
ExpenseItem, Input,
LoadingSymbol, Plus,
SearchBar, Welcome
SearchBar, Welcome,
ToggleSetting, CustomCard,
ButtonSetting
}