-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch workshop over to React hooks (#47)
## Problem Hooks have been out for over a year now. It's time to freshen up and modernize the workshop. ## Solution Replace the React Fundamentals workshop with a workshop that builds a giphy search app using hooks. This meant that the redux and testing workshops no longer were applicable since they were based on something that no longer existed. They were also outdated too, so they got deleted. However, the old workshop is now at the [`email-based` tag](https://github.com/benmvp/react-workshop/tree/email-based). ## Screenshot <img width="1676" alt="Screen Shot 2020-03-22 at 4 14 28 PM" src="https://user-images.githubusercontent.com/5714478/77264781-552a9f80-6c58-11ea-9521-6719b495a758.png"> See [deploy preview](https://deploy-preview-47--react-fun-workshop.netlify.com/) for final UI.
- Loading branch information
Showing
506 changed files
with
16,887 additions
and
49,444 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
main: | ||
name: Test app build | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v1 | ||
|
||
- name: Use Node 12 | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
|
||
- name: Install NPM dependencies | ||
run: npm ci | ||
|
||
- name: Run app build | ||
run: npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v12.14.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "all" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.