Skip to content

Instantly share code, notes, and snippets.

@DrBoolean
Last active August 26, 2015 17:17
Show Gist options
  • Save DrBoolean/d00e59601406b0c9f599 to your computer and use it in GitHub Desktop.
Save DrBoolean/d00e59601406b0c9f599 to your computer and use it in GitHub Desktop.
Blog post about salesforce design system + react
var React = require('react');
var Notification = require('./notification');
var App = React.createClass({
render: function() {
return (
<div>
<Notification />
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment