Skip to content

Commit

Permalink
Add RNTester and UITestBed as dev routes in main apps
Browse files Browse the repository at this point in the history
Summary: It's nice to have everything in one place, especially when touching native code where it's a pain to arc focus or buck build another target just to test some other JS.

Reviewed By: yungsters

Differential Revision: D14957052

fbshipit-source-id: fd3c388ab5b193b0fe9cebdc0c81ddbff9a714d4
  • Loading branch information
sahrens authored and facebook-github-bot committed Aug 13, 2019
1 parent a9c8103 commit 450e4a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RNTester/js/RNTesterApp.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ UIManager.setLayoutAnimationEnabledExperimental(true);
const DRAWER_WIDTH_LEFT = 56;

type Props = {
exampleFromAppetizeParams: string,
exampleFromAppetizeParams?: ?string,
};

const APP_STATE_KEY = 'RNTesterAppState.v2';
Expand Down
2 changes: 1 addition & 1 deletion RNTester/js/RNTesterApp.ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import type {RNTesterAction} from './utils/RNTesterActions';
import type {RNTesterNavigationState} from './utils/RNTesterNavigationReducer';

type Props = {
exampleFromAppetizeParams: string,
exampleFromAppetizeParams?: ?string,
};

YellowBox.ignoreWarnings([
Expand Down

0 comments on commit 450e4a7

Please sign in to comment.