Skip to content

Instantly share code, notes, and snippets.

React & REST API Workshop Version 3

Let's POST Data to a Web Database From a React Component

Thank you for attending our 2nd Kintone x React workshop!
Use the following files to follow along!

Download Links

Click here or the Download Zip button on the upper right corner for all the code & slides you need for our workshop!

@amarg26
amarg26 / Linting
Created September 26, 2021 04:54 — forked from gcnit/Linting
#Add stylelint, eslint and prettier config file
git clone https://github.com/gcnit/code-template.git
#Rename folder to your project name
mv code-template <folder-name>
#Go to folder
cd <folder-name>
#Remove .git folder
@amarg26
amarg26 / The Rules.md
Created June 8, 2021 13:19 — forked from sebmarkbage/The Rules.md
The Rules of React

The Rules of React

All libraries have subtle rules that you have to follow for them to work well. Often these are implied and undocumented rules that you have to learn as you go. This is an attempt to document the rules of React renders. Ideally a type system could enforce it.

What Functions Are "Pure"?

A number of methods in React are assumed to be "pure".

On classes that's the constructor, getDerivedStateFromProps, shouldComponentUpdate and render.