Last active
August 4, 2016 21:37
-
-
Save ryanjduffy/50ba7c8d8adcbe1615cb016bf799cc69 to your computer and use it in GitHub Desktop.
This file contains 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
// vim: syntax=JSX | |
import React from 'react'; | |
export default class MyClass extends React.Component { | |
render() { | |
return ( | |
<a href="google.com">Let's head to google.com</a> | |
); | |
} | |
} |
This file contains 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
import React from 'react'; | |
export default class MyClass extends React.Component { | |
render() { | |
return ( | |
<a href="google.com">Let's head to google.com</a> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment