import React from 'react' import PropTypes from 'prop-types' import { StyleSheet, View } from 'react-native' import Tick from './tick' import { getTickList } from '../helpers/chart' const TickList = ({ height }) => { return ( {getTickList(height).map( ({ isBold, label, position, shouldShowLabel, tickHeight }) => { return ( ) } )} ) } TickList.propTypes = { height: PropTypes.number, } const styles = StyleSheet.create({ container: { flex: 1, }, }) export default TickList