├── .npmignore ├── .gitignore ├── examples ├── tictactoe │ ├── src │ │ ├── components │ │ │ ├── Input.js │ │ │ ├── newWindow.html │ │ │ ├── Square.js │ │ │ ├── Row.js │ │ │ ├── GameList.js │ │ │ └── App.js │ │ └── index.js │ ├── scss │ │ ├── application.scss │ │ ├── _variables.scss │ │ └── _game.scss │ ├── views │ │ └── index.ejs │ ├── README.md │ ├── server │ │ ├── util.js │ │ └── db │ │ │ ├── games.test.json │ │ │ ├── games.dev.json │ │ │ └── games.js │ ├── test │ │ ├── index.js │ │ └── js │ │ │ ├── enzymeTest.js │ │ │ ├── enzyme.js │ │ │ ├── supertest.js │ │ │ ├── zombie.js │ │ │ └── unit.js │ ├── test.js │ ├── webpack.config.js │ ├── index.js │ └── package.json └── instareact-app │ ├── public │ ├── favicon.ico │ ├── profile.jpg │ ├── instalogo.png │ ├── index.html │ └── feed.css │ ├── .gitignore │ ├── package.json │ └── src │ ├── index.css │ ├── index.js │ └── jquery-3.2.1.min.js ├── src ├── demo.gif ├── BlockScreenshot.png ├── nodeStore.js ├── inject.js ├── dom-parse.js └── assert.js ├── package.json ├── LICENSE.MD ├── README.md └── test └── assert.test.js /.npmignore: -------------------------------------------------------------------------------- 1 | /examples 2 | /cli -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bundle.js -------------------------------------------------------------------------------- /examples/tictactoe/src/components/Input.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactVT/react-vt/HEAD/src/demo.gif -------------------------------------------------------------------------------- /examples/tictactoe/scss/application.scss: -------------------------------------------------------------------------------- 1 | @import '_variables'; 2 | @import '_game'; 3 | -------------------------------------------------------------------------------- /src/BlockScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactVT/react-vt/HEAD/src/BlockScreenshot.png -------------------------------------------------------------------------------- /examples/instareact-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactVT/react-vt/HEAD/examples/instareact-app/public/favicon.ico -------------------------------------------------------------------------------- /examples/instareact-app/public/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactVT/react-vt/HEAD/examples/instareact-app/public/profile.jpg -------------------------------------------------------------------------------- /examples/instareact-app/public/instalogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactVT/react-vt/HEAD/examples/instareact-app/public/instalogo.png -------------------------------------------------------------------------------- /examples/tictactoe/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $lightOrange: #FFCA08; 2 | $darkOrange: #F57921; 3 | $lightBlue: #ACCEEC; 4 | $darkBlue: #398BD4; 5 | -------------------------------------------------------------------------------- /examples/tictactoe/src/components/newWindow.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
95 | brischmalz
97 |Altadena, CA
98 |3d
100 |{this.props.likes} likes
127 |{props.user}{props.comment}
; 187 | 188 | const LikeButton = (props) => { 189 | const liked = props.liked; 190 | const str = liked ? 'fa fa-heart fa-2x likeButton liked' : 'fa fa-heart-o fa-2x likeButton'; 191 | return ( 192 | 193 | ); 194 | }; 195 | 196 | ReactDOM.render( 197 |