Skip to content

Instantly share code, notes, and snippets.

View janitastic's full-sized avatar

Jani Palomino janitastic

View GitHub Profile

React Router Prework

This gist contains a short assignment I'd like everyone to complete before our formal lesson. The prework involves reading some of the React Router documentation, and will allow us to keep the lesson more hands on.

Questions / Readings

Router Overview

React Router is a library that allows us to make our single page React applications mimic the behavior of multipage apps. It provides the ability to use browser history, allowing users to navigate with forward / back buttons and bookmark links to specific views of the app. Most modern sites use some form of routing. React Router exposes this functionality through a series of components. Let's start by looking at the overall structure of an app using router:

Description

Include a summary of the change and which issue is fixed or feature was added

Select One Thing

  • This broke nothing
  • This broke something
  • This broke everything

Fixes (if any)

@janitastic
janitastic / fitlit-DTR.md
Last active November 1, 2021 19:17
fitlit-DTR

DTR: Define the Relationship

Use this template when conducting DTR with your project partners. It's recommended that you copy/paste this template into your own gist each time you conduct a DTR to take notes on the conversation.

Guiding Questions to Define The Relationship:

1. What are each of our learning goals for this project? What drives us in this project?

  • Regan - understand every piece of code, not submit code I don't understand. Better understanding of local storage.
  • Susanna - ditto Regan. Learning from eachother, with a deeper understanding of the code and process.
  • Nate - excited to learn how to use APIs, to build databases.

Checklist/Rubric

Part I: Creating Directories and Files; Initializing Git and Pushing to GitHub

  • I named my directories correctly.
  • I named my files correctly.
  • I structured my files and directories correctly.
  • I made only one initial commit.
  • I pushed my initial commit to GitHub.
@janitastic
janitastic / git-collaborative-workflow.md
Created February 7, 2021 21:10 — forked from adamloving/git-collaborative-workflow.md
Simple Git workflow for collaborating on a project. I wrote this to help a co-worker learn Git (and help me remember after a year of working on my own).

Creating the change

$ git checkout -b my-feature

... modify code ....

$ git add <filename> 
$ git commit -m “my feature is this”