Skip to content

Instantly share code, notes, and snippets.

@joshdmiller
Created June 2, 2016 17:23
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 joshdmiller/500a8d1de315b216bb72460bba6b1e56 to your computer and use it in GitHub Desktop.
Save joshdmiller/500a8d1de315b216bb72460bba6b1e56 to your computer and use it in GitHub Desktop.
pseudocode for link styles
render () {
const styles = {
link: {
color: '#fff',
textDecoration: 'none',
},
};
// ...
return (
// ...
primaryText={<a href={paths.feedback()} style={styles.link}>Hello</a>}
// ...
);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment