Skip to content

Commit 554cedb

Browse files
committed
prettify
1 parent 625aa5d commit 554cedb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

modules/tableview/index.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ import * as React from 'react'
44
import {Platform} from 'react-native'
55
import {androidLightBackground} from '@frogpond/colors'
66

7-
import {TableView, Section as IosSection, Cell} from 'react-native-tableview-simple'
7+
import {
8+
TableView,
9+
Section as IosSection,
10+
Cell,
11+
} from 'react-native-tableview-simple'
812

913
export * from './cells'
1014

11-
let AndroidSection = (props) => <IosSection sectionTintColor={androidLightBackground} {...props} />
15+
let AndroidSection = props => (
16+
<IosSection sectionTintColor={androidLightBackground} {...props} />
17+
)
1218
let Section
1319

1420
if (Platform.OS === 'android') {

0 commit comments

Comments
 (0)