Skip to content

Commit 0512e23

Browse files
committed
Fix line breaks in Q/A section
1 parent 41b0b58 commit 0512e23

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,48 +95,48 @@ the responder system.
9595

9696
# FAQ
9797

98-
Q. How does debugging work? Can I set breakpoints in my JS?
98+
Q. How does debugging work? Can I set breakpoints in my JS?
9999
A. We are going to add the ability to use the Chrome developer tools soon. We
100100
are very passionate about building the best possible developer experience.
101101

102-
Q. When is this coming to Android/Windows/OS X/etc?
102+
Q. When is this coming to Android/Windows/OS X/etc?
103103
A. We're working on Android, and we are excited to release it as soon as we can.
104104
We are looking forward to the community helping us target other platforms as
105105
well :)
106106

107-
Q. How do I create my own app?
107+
Q. How do I create my own app?
108108
A. Copy the entire `Examples/TicTacToe` folder, rename stuff in Xcode, and
109109
replace the `TicTacToeApp.js` with your own. Then, in `AppDelegate.m`, update
110110
`moduleName` to match your call to
111111
`Bundler.registerComponent(<moduleName>, <componentName>)` at the bottom of your
112112
JS file, and update `jsCodeLocation` to match your JS file name and location.
113113

114-
Q. Can I submit my own React Native app to the App Store?
114+
Q. Can I submit my own React Native app to the App Store?
115115
A. Not yet, but you will be able to soon. If you build something you want to
116116
submit to the App Store, come talk to us ASAP.
117117

118-
Q. How do I deploy to my device?
118+
Q. How do I deploy to my device?
119119
A. You can change `localhost` in `AppDelegate.m` to your laptop's IP address and
120120
grab the bundle over the same Wi-Fi network. You can also download the bundle
121121
that the React packager generates, save it to the file `main.jsbundle`, and add it
122122
as a static resource in your Xcode project. Then set the `jsCodeLocation` in
123123
`AppDelegate.m` to point to that file and deploy to your device like you would
124124
any other app.
125125

126-
Q. What's up with this private repo? Why aren't you just open sourcing it now?
126+
Q. What's up with this private repo? Why aren't you just open sourcing it now?
127127
A. We want input from the React community before we open the floodgates so we
128128
can incorporate your feedback, and we also have a bunch more features we want to
129129
add to make a more complete offering before we open source.
130130

131-
Q. Do you have to ship a JS runtime with your apps?
131+
Q. Do you have to ship a JS runtime with your apps?
132132
A. No, we just use the JavaScriptCore public API that is part of iOS 7 and
133133
later.
134134

135-
Q. How do I add more native capabilities?
135+
Q. How do I add more native capabilities?
136136
A. React Native is designed to be extensible - come talk to us, we would love to
137137
work with you.
138138

139-
Q. Can I reuse existing iOS code?
139+
Q. Can I reuse existing iOS code?
140140
A. Yes, React Native is designed to be extensible and allow integration of all
141141
sorts of native components, such as `UINavigationController` (available as
142142
`<NavigatorIOS>`), `MKMapView` (not available yet), or your own custom

0 commit comments

Comments
 (0)