Each of the pages on the site are going to need the user's name and address in order to find relevant information to them. Encapsulating this functionality into a single component will help prevent duplication of work.
Implementation
Look at the VoterInfoForm and VerifyVoterInfo components and extract the name lookup and address verification functionality into a single component.
Ensure the data returned from the API to the new component, can be passed up to other components.
This is a:
Enhancement
Description
Each of the pages on the site are going to need the user's name and address in order to find relevant information to them. Encapsulating this functionality into a single component will help prevent duplication of work.
Implementation
Look at the VoterInfoForm and VerifyVoterInfo components and extract the name lookup and address verification functionality into a single component.
Ensure the data returned from the API to the new component, can be passed up to other components.