React Coding Challenge for Front End Developers
You will be creating a custom dropdown component that selects content package types. Given this application framework, please complete the following workflow.
- The dropdown does not have any options loaded. Use the data array given in
DropdownControl.js
component state to render options values. - Use the
label
parameter for user display andname
for a unique value identifier.
- Once the dropdown has options loaded, utilize the
DropdownControl
state to store which option is selected. - The default selected option should be
twoUp
/Two Up
.
- There should be two arrow buttons next to the dropdown that update the current value.
- The left arrow should move back which option is selected.
- The right arrow should move forward which option is selected.
This project is based off of create-react-app for setup simplicity.
$ npm install
$ npm start # Start the development server
.
├── public # Static public assets
│ ├── index.html # Main HTML page container for app
├── src # Application source code
│ ├── index.js # Mounts React application
│ ├── components # Application components
│ │ ├── App # Root component
│ │ ├── DropdownControl # Dropdown component
│ │ │ ├── index.js # Index file for better pathing
│ │ │ ├── DropdownControl.js # Dropdown component file (TODO)
│ │ │ └── DropdownControl.css # Dropdown component styling
│ │ └── Header # Header component
│ └── utils # Application utils
└── README.md # Application instructions
Please don't hesistate to ask if you have any questions. Good luck!