Created
April 7, 2017 14:43
-
-
Save mvbattan/58e748ffaf611cba39199ca0e0c541d7 to your computer and use it in GitHub Desktop.
index - v1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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