import _ from 'lodash'; import React, {Component} from 'react'; import {ScrollView} from 'react-native'; import {View, Text, Button, HapticService, HapticType} from 'react-native-ui-lib'; export default class HapticScreen extends Component { onPress = ({hapticType}: {hapticType: HapticType}) => { HapticService.triggerHaptic(hapticType, 'HapticScreen'); }; render() { return ( Haptic Screen {_.map(HapticService.HapticType, hapticType => { return