Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"arrowParens": "avoid",
"trailingComma": "es5",
"singleQuote": true,
"semi": true
}
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,27 @@ You are free to create a React web app, or a React Native mobile app, it's up to
1. **Submitting Code:**

Option A:
- Fork this repo
- Issue a Pull Request when you're ready to start. This will count as your starting date.
- Setup your development environment for React or React Native
- Implement your solution
- Commit your changes into the forked repo

- Fork this repo
- Issue a Pull Request when you're ready to start. This will count as your starting date.
- Setup your development environment for React or React Native
- Implement your solution
- Commit your changes into the forked repo

Option B:
- Setup your development environment for React or React Native
- Implement your solution
- Archive your solution into a zip file
- Send us the zip file. We should be able to extract the content and run it from there (w/o node_modules)

- Setup your development environment for React or React Native
- Implement your solution
- Archive your solution into a zip file
- Send us the zip file. We should be able to extract the content and run it from there (w/o node_modules)

2. **Deadline:**

You have 1 week to complete as much tasks as you can from the challenge below. Countdown starts from the date you issued the PR or from the date you were invited to complete this challenge via email.

3. **Implementation:**

There is no correct way to do it, you are free to use whatever libraries you like. We want to see what you come up with on your own.
There is no correct way to do it, you are free to use whatever libraries you like. We want to see what you come up with on your own.

### The Challenge

Expand Down
Loading