Skip to content

Instantly share code, notes, and snippets.

@mvbattan
Created April 7, 2017 14:43
Show Gist options
  • Save mvbattan/58e748ffaf611cba39199ca0e0c541d7 to your computer and use it in GitHub Desktop.
Save mvbattan/58e748ffaf611cba39199ca0e0c541d7 to your computer and use it in GitHub Desktop.
index - v1
export default class lineChartExample extends Component {
render() {
return (
<View style={styles.container}>
<LevelSeparator height={30} label={10} />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
height: 100
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment