Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Napoli committed Jul 10, 2018
1 parent 2f5f748 commit fbfdafc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions App/App.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import React, { Component } from 'react'
import {HomeScreen} from "App/Containers/HomeScreen";
import { HomeScreen } from 'App/Containers/HomeScreen'

export default class App extends Component {
render() {
return (
<HomeScreen/>
)
return <HomeScreen />
}
}
2 changes: 1 addition & 1 deletion App/Containers/HomeScreen.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react'
import {Platform, StyleSheet, Text, View} from 'react-native'
import { Platform, StyleSheet, Text, View } from 'react-native'

const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
Expand Down

0 comments on commit fbfdafc

Please sign in to comment.