Skip to content

Commit

Permalink
Merge pull request facebook#77 from reasonml-community/capitalize-app…
Browse files Browse the repository at this point in the history
…-imports

Capitalize imports in RNTester app index.ios/android files
  • Loading branch information
saschatimme authored Sep 28, 2017
2 parents 7d0f6e4 + 6f8f26c commit 03d5e0d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
8 changes: 3 additions & 5 deletions RNTester/index.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
* @flow
*/

import { comp as App } from "../lib/js/RNTester/src/rNTesterApp.js";
import React from "react";
import {
AppRegistry
} from 'react-native';
import {comp as App} from '../lib/js/RNTester/src/RNTesterApp.js';
import React from 'react';
import {AppRegistry} from 'react-native';

AppRegistry.registerComponent('RNTester', () => App);
8 changes: 3 additions & 5 deletions RNTester/index.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
* @flow
*/

import { reactClass } from "./lib/js/src/rNTesterApp.js";
import React from "react";
import {
AppRegistry
} from 'react-native';
import {reactClass} from './lib/js/src/RNTesterApp.js';
import React from 'react';
import {AppRegistry} from 'react-native';

AppRegistry.registerComponent('RNTester', () => reactClass);

0 comments on commit 03d5e0d

Please sign in to comment.