diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-06-05 17:42:51 -0400 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-06-05 17:42:51 -0400 |
| commit | 658263c5beac838240a19627894ef0621f681442 (patch) | |
| tree | f6377a4dd3d6059a967cbd0e2b7ec73d4ac33e93 /client/src/lib/timeline/index.js | |
| parent | 5b83db9434059cbc6c57909db036297325ca2ac9 (diff) | |
browser, touchable
Diffstat (limited to 'client/src/lib/timeline/index.js')
| -rw-r--r-- | client/src/lib/timeline/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/lib/timeline/index.js b/client/src/lib/timeline/index.js index 09d2d1b..381f881 100644 --- a/client/src/lib/timeline/index.js +++ b/client/src/lib/timeline/index.js @@ -3,7 +3,6 @@ import { FlatList, StyleSheet, Text, - TouchableOpacity, View, ScrollView, } from 'react-native'; @@ -17,6 +16,7 @@ import TimelineFull from './timelineFull' import TimelineHeader from './timelineHeader' import TimelineFilter from './timelineFilter' import TickMarks from './tickMarks' +import Touchable from '../components/touchable' export default class Timeline extends Component { constructor(props) { @@ -100,11 +100,11 @@ export default class Timeline extends Component { // <View style={styles.body}> // <View style={styles.sidebar}> -// <TouchableOpacity onPress={() => this.setState({ filterVisible: true })}> +// <Touchable onPress={() => this.setState({ filterVisible: true })}> // <ClearText style={[styles.filterText, !! this.state.tag ? styles.filterActive : styles.filterInactive ]}> // { !! this.state.tag ? 'FILTER' : '' } // </ClearText> -// </TouchableOpacity> +// </Touchable> // </View> // </View> |
