Skip to content

Commit

Permalink
add select options
Browse files Browse the repository at this point in the history
  • Loading branch information
bombnp committed Jul 16, 2023
1 parent 95dffc2 commit b48cfdb
Showing 1 changed file with 92 additions and 2 deletions.
94 changes: 92 additions & 2 deletions src/pages/expenses/1/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,98 @@ const ExpensesPage = () => {
expensesSteps[0].active = true
}

const monthlyIncome: SelectOption[] = []
const monthlyDebt: SelectOption[] = []
const monthlyIncome: SelectOption[] = [
{
value: '9999',
label: '0 - 9,999',
},
{
value: '19999',
label: '10000 - 19,999',
},
{
value: '29999',
label: '20000 - 29,999',
},
{
value: '39999',
label: '30000 - 39,999',
},
{
value: '49999',
label: '40000 - 49,999',
},
{
value: '59999',
label: '50000 - 59,999',
},
{
value: '69999',
label: '60000 - 69,999',
},
{
value: '79999',
label: '70000 - 79,999',
},
{
value: '89999',
label: '80000 - 89,999',
},
{
value: '99999',
label: '90000 - 99,999',
},
{
value: '100000+',
label: '100,000 บาทขึ้นไป',
},
]
const monthlyDebt: SelectOption[] = [
{
value: '9999',
label: '0 - 9,999',
},
{
value: '19999',
label: '10000 - 19,999',
},
{
value: '29999',
label: '20000 - 29,999',
},
{
value: '39999',
label: '30000 - 39,999',
},
{
value: '49999',
label: '40000 - 49,999',
},
{
value: '59999',
label: '50000 - 59,999',
},
{
value: '69999',
label: '60000 - 69,999',
},
{
value: '79999',
label: '70000 - 79,999',
},
{
value: '89999',
label: '80000 - 89,999',
},
{
value: '99999',
label: '90000 - 99,999',
},
{
value: '100000+',
label: '100,000 บาทขึ้นไป',
},
]
const savings: SelectOption[] = []
const assets: SelectOption[] = []
return (
Expand Down

0 comments on commit b48cfdb

Please sign in to comment.