Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         this.state = {
  2.             step: 1, // Starts on step 0
  3.             profile: { // TODO: Load from profile
  4.                 firstName: 'Daniel',
  5.                 middleName: null,
  6.                 lastName: 'Gutiérrez',
  7.                 maidenName: 'Gileta',
  8.                 birthday: null,
  9.                 gender: 'hombre',
  10.                 birthplace: 'JALISCO',
  11.                 rfc: null,
  12.                 curp: null,
  13.             },
  14.             form: {
  15.                 situation: null,
  16.                 prestamo: {
  17.                     howMuch: 0,
  18.                     months: 0,
  19.                     why: null,
  20.                     about: null,
  21.                 },
  22.                 ingresos: {
  23.                     employee: {
  24.                         business: null,
  25.                         job: null,
  26.                         antiquity: null,
  27.                         tel: null,
  28.                         ext: null,
  29.                         income: null,
  30.                     },
  31.                     ownWork: {
  32.                         occupation: null,
  33.                         antiquity: null,
  34.                         tel: null,
  35.                         ext: null,
  36.                         income: null,
  37.                     },
  38.                     hasBusiness: {
  39.                         business: null,
  40.                         antiquity: null,
  41.                         tel: null,
  42.                         ext: null,
  43.                         income: null,
  44.                     },
  45.                     retired: {
  46.                         income: null,
  47.                     },
  48.                     // Default
  49.                     incomeOther: null,
  50.                     imss: null,
  51.                     insurance: null,
  52.                 },
  53.                 gastos: {
  54.                     food: 0,
  55.                     rent: 0,
  56.                     cards: 0,
  57.                     services: 0,
  58.                     transport: 0,
  59.                     education: 0,
  60.                     recreation: 0,
  61.                     insurance: 0,
  62.                     other: 0,
  63.                     dependants: 0,
  64.                     vehicle: 0,
  65.                     total: 0,
  66.                 },
  67.             },
  68.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement