Skip to content

Latest commit

 

History

History

frontend

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Available Scripts

In the frontend project directory, you can run:

yarn start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

API Integration

Stripe Integration

  • Stripe's checkout option has been implemented with a one time charge option.
  • Axios and react-stripe-checkout have been implemented but currently requires a Stripe account set to test mode to demonstrate functionality
  • StripeBtn opens a Stripe Payment modal when clicked
    • within StripeBtn there is a variable that holds a publishable key, obtained from the Stripe dashboard

Jurgens Notes

Bread Crumbs

  • Utilizing React’s Router api is the most obvious and straightforward approach to Breadcrumbs.
  • Create a Nav as a container component to encapsulate the the ensuring breadcrumbs.
  • Functionally render the props based on the amount of items to be passed through.
  • Create a presentational component that will consume predefined routes from an array and render them with the corresponding route. Wrap your routes in a switch case in the event there is no match.
  • Export your Breadcrumbs class and make sure to wrap the component with tags for DOM rendering.