| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- 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,
- }
- })
- }
|