By Ira Herman
Notes to help you get started in react-native.
- Explain how react-native apps work, native UI with JS for logic.
- Explain what Expo does.
/*! | |
* Shopify Admin Auditing | |
* | |
* Copyright (c) 2022 Eric Garside (http://sakaralife.com) | |
* Available under the MIT license: https://opensource.org/licenses/MIT | |
*/ | |
// The selector for permssion checkboxes label sets on the individual user pages (if shopify changes this) | |
const permissionSelector = 'label.Polaris-Choice_j5gzq:not([for^="Polaris"])' | |
// The selector for permission text within the checkbox label |
UPDATE IN PROGRESS:
Experimenting with this instead:
Given the JS Object:
const user = { name: "Ira", email: "[email protected]", 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.