0% found this document useful (0 votes)
66 views

React Native Assignment

The document outlines requirements for a React Native assignment including a login page with username and password validation and a dashboard page that populates user data from a JSON file using Redux.

Uploaded by

Anuradha rajur
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
66 views

React Native Assignment

The document outlines requirements for a React Native assignment including a login page with username and password validation and a dashboard page that populates user data from a JSON file using Redux.

Uploaded by

Anuradha rajur
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

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":"[email protected]",'
"password" :'prashant123'
}

JSON - DashBoardPage

{
user:[{
"id":1,
"name":"test1",
"age" : "11",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9738452245"
},
{
"id" : 2,
"name":"test2",
"age" : "12",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9738452245"
},
{
"id":3,
"name":"test3",
"age" : "13",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9738452245"
},
{
"id":4,
"name":"test4",
"age" : "14",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9738452245"
},
{
"id":5,
"name":"test5",
"age" : "15",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9738452245"
},
{
"id":6,
"name":"test6",
"age" : "16",
"gender":"male",
"email" : "[email protected]",
"phoneNo" : "9738452245"
}

]
}

You might also like