Advertisement
Guest User

Untitled

a guest
Dec 12th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.24 KB | None | 0 0
  1. const View = require('./ttt-view');// require appropriate file
  2. const Game = require('../../solution/game');// require appropriate file
  3.  
  4. const game = new Game();
  5.  
  6.  
  7.  
  8. $( () => {
  9.   const ttt = $('.ttt');
  10.   const view = new View(game, ttt);
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement