remove uneeded comment

This commit is contained in:
Loewy 2024-01-15 13:18:23 -08:00
parent f14ba0e97f
commit 58dfe98448

View File

@ -9,7 +9,6 @@ interface ChartViewProps {
testID?: string;
}
// ChartView functional component with margin props
const ChartView: React.FC<ChartViewProps> = ({ children, style, testID }) => {
return <View style={[graphStyles.container, style]} testID={testID} >{children}</View>;
};