Skip to content

Instantly share code, notes, and snippets.

View eugenebelov's full-sized avatar
🏗️
mindset under construction

Evgeniy Bilov eugenebelov

🏗️
mindset under construction
View GitHub Profile
var React = require('react/addons')
var Button = React.createClass({
getInitialState: function() {
return {active:false}
},
click: function() {
this.setState({active: !this.state.active})
},
render: function() {
module.exports = function (grunt) {
"use strict";
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// AUTOPREFIXER ////////////////////////////////////////////////////////////////
autoprefixer: {
options: {