Skip to content

Instantly share code, notes, and snippets.

@lwinged
Created May 6, 2019 16:38
Show Gist options
  • Save lwinged/2050021b0a44f5b0bd127d6b9b309ca2 to your computer and use it in GitHub Desktop.
Save lwinged/2050021b0a44f5b0bd127d6b9b309ca2 to your computer and use it in GitHub Desktop.
default class LotsOfStyles extends Component {
render() {
return (
<View style={styles.greybox}>
<Text>Lorem Ipsum</Text>
</View>
);
}
}
const styles = StyleSheet.create({
greybox: {
backgroundColor: #e0e0e0,
width: 320px;
height: 240px;
font: 900 24px Georgia;
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment