Skip to content

Commit fbfdafc

Browse files
author
Matthieu Napoli
committed
Fix coding style
1 parent 2f5f748 commit fbfdafc

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

App/App.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import React, { Component } from 'react'
2-
import {HomeScreen} from "App/Containers/HomeScreen";
2+
import { HomeScreen } from 'App/Containers/HomeScreen'
33

44
export default class App extends Component {
55
render() {
6-
return (
7-
<HomeScreen/>
8-
)
6+
return <HomeScreen />
97
}
108
}

App/Containers/HomeScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from 'react'
2-
import {Platform, StyleSheet, Text, View} from 'react-native'
2+
import { Platform, StyleSheet, Text, View } from 'react-native'
33

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

0 commit comments

Comments
 (0)