Skip to content

Instantly share code, notes, and snippets.

View nhall97's full-sized avatar
🏠
Working from home

Nathan Hall nhall97

🏠
Working from home
View GitHub Profile
@nhall97
nhall97 / app.js
Created November 18, 2021 16:05
Login Auth with React Apps - react-router-dom
//https://www.digitalocean.com/community/tutorials/how-to-add-login-authentication-to-react-applications
//By default, react-router-dom is now ^6.0.2.
//Below are the significant changes for the tutorial to use the new version of react-router-dom
//Line 14 -> Switch has been replaced with Routes
//Line 29/34 -> Switch has been replaced with Routes (2)
import React, { useState }from "react";
import "./App.css";