Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 1639 | Rev 1642 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1639 Rev 1640
Línea 5... Línea 5...
5
  type: 'Publicación',
5
  type: 'Publicación',
6
  reportUrl: '',
6
  reportUrl: '',
7
  onComplete: () => {}
7
  onComplete: () => {}
8
}
8
}
Línea 9... Línea 9...
9
 
9
 
10
const AuthReducer = (state = reportState, action) => {
10
const reportReducer = (state = reportState, action) => {
Línea 11... Línea 11...
11
  const { type, payload } = action
11
  const { type, payload } = action
12
 
12
 
13
  const actionCases = {
13
  const actionCases = {
Línea 25... Línea 25...
25
  }
25
  }
Línea 26... Línea 26...
26
 
26
 
27
  return actionCases[type] || state
27
  return actionCases[type] || state
Línea 28... Línea 28...
28
}
28
}