Skip to content

Instantly share code, notes, and snippets.

@ryanjduffy
Last active August 4, 2016 21:37
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 ryanjduffy/50ba7c8d8adcbe1615cb016bf799cc69 to your computer and use it in GitHub Desktop.
Save ryanjduffy/50ba7c8d8adcbe1615cb016bf799cc69 to your computer and use it in GitHub Desktop.
// 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>
);
}
}
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