Last active
August 29, 2015 14:22
-
-
Save gdumitrescu/e0958519626a97599f23 to your computer and use it in GitHub Desktop.
Revisions
-
gdumitrescu revised this gist
Jun 19, 2015 . 1 changed file with 2 additions and 23 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -3,29 +3,8 @@ /** @jsx React.DOM */ 'use strict'; ]]></content> <tabTrigger>jsx</tabTrigger> <!-- <scope>source.js</scope> --> <description>@jsx React.DOM</description> </snippet> -
gdumitrescu revised this gist
Jun 4, 2015 . 1 changed file with 10 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -8,18 +8,19 @@ var React = require('react'); var $1 = React.createClass({ mixins: [], getInitialState: function() { return { }; }, render: function() { return ( <div> $2 </div> ) } }); module.exports = $1; React.renderComponent(<$1/>, document.body); -
gdumitrescu created this gist
Jun 3, 2015 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ <snippet> <content><![CDATA[ /** @jsx React.DOM */ 'use strict'; var React = require('react'); var $1 = React.createClass({ mixins: [], getInitialState: function() { return { }; }, render: function() { return ( <div> $2 </div> ) } }); module.exports = $1; React.renderComponent(<$1/>, document.body); ]]></content> <tabTrigger>jsx</tabTrigger> <scope>source.js</scope> <description>jsx</description> </snippet>