React Native Assignment
Login page fields
1. Login page, it must have the following pages.
a. Username
b. Password
c. Button(Login)
Note :
Username,Password validation needed
Should login, when it’s matched with below JSON , redirectTo - Employee List page
DashBoard page
1. Populate the Json data given below in the table.
Use Redux for implementation.
JSON - Login
{
"username":"prashant@gmail.com",'
"password" :'prashant123'
}
JSON - DashBoardPage
{
user:[{
"id":1,
"name":"test1",
"age" : "11",
"gender":"male",
"email" : "test1@gmail.com",
"phoneNo" : "9738452245"
},
{
"id" : 2,
"name":"test2",
"age" : "12",
"gender":"male",
"email" : "test2@gmail.com",
"phoneNo" : "9738452245"
},
{
"id":3,
"name":"test3",
"age" : "13",
"gender":"male",
"email" : "test3@gmail.com",
"phoneNo" : "9738452245"
},
{
"id":4,
"name":"test4",
"age" : "14",
"gender":"male",
"email" : "test4@gmail.com",
"phoneNo" : "9738452245"
},
{
"id":5,
"name":"test5",
"age" : "15",
"gender":"male",
"email" : "test5@gmail.com",
"phoneNo" : "9738452245"
},
{
"id":6,
"name":"test6",
"age" : "16",
"gender":"male",
"email" : "test6@gmail.com",
"phoneNo" : "9738452245"
}
]
}