Intro to react-native cheatsheet
By Ira Herman
Notes to help you get started in react-native.
Cheatsheet Objectives
- Explain how react-native apps work, native UI with JS for logic.
- Explain what Expo does.
By Ira Herman
Notes to help you get started in react-native.
UPDATE IN PROGRESS:
Experimenting with this instead:
git checkout -b my_feature_branch
The branch is an exact clone of what master was when you ran the command.
const SettingsPage = (props) => {
return (
<>
<h1>SettingsPage</h1>
<Link to="/">Home</Link>
</>
);
Given the JS Object:
const user = { name: "Ira", email: "ira@example.com", favColor: "blue" };
By Ira Herman
Live Video Walkthrough (bonus lesson) recording
================
By Ira Herman
This code challange prompt is modeled after real-world take-home code challenges/prompts many companies use as part of their technical interview process.
This will help you practice/prepare to build a mini-project off of specs, and give you practice/reinforcement using ReactJS with an API back end.
in terminal, run node
then paste in these lines:
require("dotenv").config();
// Connect to mongodb:
require("./config/database");
// Load up our models:
python3 manage.py runserver
createdb
python3 manage.py makemigrations