12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- export const Encabezados = [
- {
- name: 'pass',
- numeric: false,
- disablePadding: true,
- label: 'Contraseña',
- },
- {
- name: 'name',
- numeric: false,
- disablePadding: true,
- label: 'Nombre',
- },
- {
- name: 'apell',
- numeric: false,
- disablePadding: true,
- label: 'Apellido',
- },
- {
- name: 'mail',
- numeric: false,
- disablePadding: true,
- label: 'Correo',
- },
- ]
- export const niveles_educativos = [
- "Primaria",
- "Basico",
- "Diversificado",
- "Tecnico",
- "Pregrado / Licenciatura",
- "Postgrado / Maestria",
- "Doctorado",
- "Diplomado",
- "Certificacion",
- "Cursos"
- ]
- export const departamentos = [
- "Guatemala",
- "Guatemala",
- "Guatemala",
- "Guatemala",
- "Guatemala",
- ]
- export function Build(pwds){
- return pwds.map( pwd => {
- let { candidato: user } = pwd
- return {
- pass : pwd.pwd,
- name: user.nombre,
- apell: user.apellidos,
- mail: user.mail,
- }
- })
- }
|