How to: Make A New Feature

This guide shows the front-end, back-end, and typescript code involved in making a new feature (registering a new user) within the Project Match tech stack.

Here is what we are aiming for:

  • Submit button in the react component hooked up to the register Redux action

  • New user data is saved in the database and gets returned and saved to Redux store

  • Upon action completion, the register page directs to the user settings page

Things that need to be done:

Front End Setup:

React Component Setup:

Back End Setup:

Last updated