// BarGraph/yAxis.js | |
import React from 'react'; | |
import { StyleSheet, ART } from 'react-native'; | |
import { scaleLinear } from 'd3-scale'; | |
const { | |
Surface, | |
Group, | |
Shape, | |
Path, | |
Text | |
} = ART; | |
export default function yAxis() { | |
return ( | |
<Surface width={} height={}> | |
</Surface> | |
); | |
} |