Skip to content

Commit

Permalink
fix: code style
Browse files Browse the repository at this point in the history
  • Loading branch information
BANG88 committed Nov 6, 2018
1 parent d936154 commit a84eef9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
"srclint": "eslint site scripts --ext '.js,.jsx' --fix",
"tslint": "antd-tools run ts-lint && npm run compile && rm -rf lib",
"tslint-fix": "antd-tools run ts-lint-fix && npm run compile && rm -rf lib",
"applint": "eslint rn-kitchen-sink --ext '.js'",
"applint": "eslint rn-kitchen-sink --ext '.js' --fix",
"pre-publish": "npm run test:all",
"prepublish": "antd-tools run guard",
"prepare": "antd-tools run guard",
Expand Down
6 changes: 3 additions & 3 deletions rn-kitchen-sink/App.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import {AppRegistry} from 'react-native';
import {createStackNavigator} from 'react-navigation';
import { AppRegistry } from 'react-native';
import { createStackNavigator } from 'react-navigation';

// import Home from './components/Home';
import RnIndex from './components/RnIndex';
import WebIndex from './components/WebIndex';
import {OTHERS, UIBARS, UICONTROLS, UIVIEWS} from './demoList';
import { OTHERS, UIBARS, UICONTROLS, UIVIEWS } from './demoList';

const getOptions = title => ({
title,
Expand Down

0 comments on commit a84eef9

Please sign in to comment.