70 lines
2.1 KiB
JavaScript
Vendored
70 lines
2.1 KiB
JavaScript
Vendored
const User = {
|
|
list: [
|
|
{
|
|
id: 1,
|
|
name: "Dhimas",
|
|
dept: 11,
|
|
super: 1,
|
|
address: "Perum Paku Jaya Permai A2/8 007/05 Paku Jaya Tangerang",
|
|
birth: "Madiun, 2 Agustus 1990",
|
|
phone: "083895518773",
|
|
mail: "dhimas@lepisi.ac.id",
|
|
workEntry: "1 Maret 2012",
|
|
workPeriod: "4 tahun",
|
|
education: "S2 Sistem Informasi"
|
|
},
|
|
{
|
|
id: 2,
|
|
name: "Barsan",
|
|
dept: 11,
|
|
address: "Persada Raya J6/16 005/008 Gembor Tangerang",
|
|
birth: "Tangerang, 13 April 1996",
|
|
phone: "085892313773",
|
|
mail: "barsan@lepisi.ac.id",
|
|
workEntry: "4 Oktober 2017",
|
|
workPeriod: "2 bulan",
|
|
education: "S1 Teknik Informatika"
|
|
},
|
|
{
|
|
id: 3,
|
|
name: "Gregorio",
|
|
dept: 11,
|
|
address: "Jalan Cempaka III HQ/22 Bumi Indah Kab. Tangerang",
|
|
birth: "Tangerang, 23 Mei 1999",
|
|
phone: "085819967701",
|
|
mail: "gregorio@lepisi.ac.id",
|
|
workEntry: "1 Agustus 2017",
|
|
workPeriod: "4 bulan",
|
|
education: "S1 Teknik Informatika"
|
|
},
|
|
{
|
|
id: 4,
|
|
name: "Donny",
|
|
dept: 10,
|
|
address: "Jl. Pepaya Raya E/22 No. 15 05/17 Bumi Asri, Tangerang",
|
|
birth: "Tangerang, 14 Januari 1997",
|
|
phone: "083813154407",
|
|
mail: "donny@lepisi.ac.id",
|
|
workEntry: "25 Juni 2014",
|
|
workPeriod: "2 tahun",
|
|
education: "TK III STT"
|
|
},
|
|
{
|
|
id: 5,
|
|
name: "Widi",
|
|
dept: 10,
|
|
super: 1,
|
|
address: "Dasana Indah UD 4/26 No. 26 Tangerang",
|
|
birth: "Tangerang, 30 September 1995",
|
|
phone: "081298877765",
|
|
mail: "widi@lepisi.ac.id",
|
|
workEntry: "25 Juni 2014",
|
|
workPeriod: "2 tahun",
|
|
education: "TK III STT"
|
|
}
|
|
],
|
|
current: {}
|
|
}
|
|
|
|
export default User
|