Skip to content

NBC News React Coding Challenge for Front End Developers

Notifications You must be signed in to change notification settings

nbcnews/fe-coding-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NBC News Dropdown Control

React Coding Challenge for Front End Developers

Instructions

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 and name 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.

Installation and Startup

This project is based off of create-react-app for setup simplicity.

$ npm install
$ npm start     # Start the development server

Project Structure

.
├── 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

Workflow

Workflow image

Please don't hesistate to ask if you have any questions. Good luck!

About

NBC News React Coding Challenge for Front End Developers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published