Skip to content

Instantly share code, notes, and snippets.

@samueljmurray
Created May 16, 2017 14:42
Show Gist options
  • Select an option

  • Save samueljmurray/a0ea9f8ee50484080a5195063b8fd2a3 to your computer and use it in GitHub Desktop.

Select an option

Save samueljmurray/a0ea9f8ee50484080a5195063b8fd2a3 to your computer and use it in GitHub Desktop.
Reusing style names
const catsListStyles = StyleSheet.create({
listContainer: {
backgroundColor: 'red'
}
});
const dogsListStyles = StyleSheet.create({
listContainer: {
backgroundColor: 'red'
}
});
<CatsList style={catsListStyles.listContainer}/>
<DogsList style={dogsListStyles.listContainer}/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment