Skip to content

Instantly share code, notes, and snippets.

View conorhastings's full-sized avatar
🏄‍♂️
9-5, just to make a living

Conor Hastings conorhastings

🏄‍♂️
9-5, just to make a living
View GitHub Profile
class Whatever extends Component {
render() {
return (
<div>Wow's this is cool</div>
);
}
}
@conorhastings
conorhastings / another-test.js
Created November 9, 2015 05:44
another jsx test
var Component = React.createClass({
render: function() {
return(
<div>
Conor's my name
</div>
);
}
});
@conorhastings
conorhastings / test.js
Created November 9, 2015 05:35
Bad JSX highlighting
import React, { Component } from 'react';
class Test extends Component {
render() {
return (
<div>
Wowowow ' this is fun
</div>
);
}