Skip to content

Instantly share code, notes, and snippets.

@marshallmurphy
Created April 18, 2020 00:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marshallmurphy/c53784343cb899f84166cdc47f61d6a0 to your computer and use it in GitHub Desktop.
Save marshallmurphy/c53784343cb899f84166cdc47f61d6a0 to your computer and use it in GitHub Desktop.
// BarGraph/index.js
import React from 'react';
import { StyleSheet, Text, View, Dimensions } from 'react-native';
export default function BarGraph() {
return (
<View style={styles.main}>
</View>
);
}
const styles = StyleSheet.create({
main: {
marginVertical: 25,
marginHorizontal: 0,
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment