git initCreates a new git repository in the directory
git add <file name>Adds a specific file to staging
git add .orgit add -AAdds the full directory and its contents to staging
Getting started:
Related tutorials:
| //This sends data from WebView to React Native | |
| ... | |
| <script> | |
| window.postMessage("Sending data from WebView"); | |
| </script> | |
| ... | |
| //In order to get data the was sent from WebView use onMessage prop on <WebView> | |
| ... |