We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13bedd6 commit d61d757Copy full SHA for d61d757
1 file changed
app/setup.js
@@ -7,5 +7,18 @@ if (config.editor) {
7
if (config.fontFamily) {
8
const styleEl = document.createElement('style');
9
document.head.appendChild(styleEl);
10
- styleEl.sheet.insertRule(`div *, span * { font-family: ${config.fontFamily} !important; }`, 0);
+ styleEl.sheet.insertRule(
11
+ `div *, span * { font-family: ${config.fontFamily} !important; }`,
12
+ 0,
13
+ );
14
}
15
+
16
+console.warn(
17
+ '[RNDebugger] Welcome! Before use this app, ' +
18
+ 'you need to ensure you are using the correct version of ' +
19
+ 'React Native Debugger and react-native:',
20
+);
21
+console.table({
22
+ 'React Native <= 0.61': { 'React Native Debugger Version': 'v0.10' },
23
+ 'React Native >= 0.62': { 'React Native Debugger Version': 'v0.11' },
24
+});
0 commit comments