We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 625aa5d commit 554cedbCopy full SHA for 554cedb
modules/tableview/index.js
@@ -4,11 +4,17 @@ import * as React from 'react'
4
import {Platform} from 'react-native'
5
import {androidLightBackground} from '@frogpond/colors'
6
7
-import {TableView, Section as IosSection, Cell} from 'react-native-tableview-simple'
+import {
8
+ TableView,
9
+ Section as IosSection,
10
+ Cell,
11
+} from 'react-native-tableview-simple'
12
13
export * from './cells'
14
-let AndroidSection = (props) => <IosSection sectionTintColor={androidLightBackground} {...props} />
15
+let AndroidSection = props => (
16
+ <IosSection sectionTintColor={androidLightBackground} {...props} />
17
+)
18
let Section
19
20
if (Platform.OS === 'android') {
0 commit comments