Just import the CSV into Google Sheets. Done.
App.Button = React.createClass({
render: function(){
var className = 'btn '+this.props.className
<a href className={className}>{this.props.children}</a>
}
});
App.BigButton = function(props){
props = props || {};
props.className = 'btn-large '+props.className
return App.Button.apply(null, arguments)
};
How would you do something like this?