import React from 'react'; import {View, TextStyle, ViewStyle} from 'react-native'; import {HOUR_BLOCK_HEIGHT} from './Packer'; import {calcTimeOffset} from './helpers/presenter'; export interface NowIndicatorProps { styles: {[key: string]: ViewStyle | TextStyle}; } const NowIndicator = (props: NowIndicatorProps) => { const {styles} = props; const indicatorPosition = calcTimeOffset(HOUR_BLOCK_HEIGHT); return ( ); }; export default NowIndicator;