Skip to content

Commit

Permalink
namepacing is important in tahini
Browse files Browse the repository at this point in the history
  • Loading branch information
nikfrank committed May 7, 2017
1 parent 9a25ed7 commit 47c90b7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions canon/crib/src/Game/Game.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ import Round from '../Round/';
import score from '../util/score';

class Game extends Component {
static get namespace(){
return 'crib-Game';
}

static get actions(){
return {
nuGame: ()=>({
Expand Down
4 changes: 4 additions & 0 deletions canon/crib/src/Pegging/Pegging.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ import Card from '../pure/Card';
import pegScore from '../util/pegScore';

class Pegging extends Component {
static get namespace(){
return 'crib-Pegging';
}

static get actions(){
return {

Expand Down
4 changes: 4 additions & 0 deletions canon/crib/src/Round/Round.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ import score from '../util/score';
import './Round.css';

class Round extends Component {
static get namespace(){
return 'crib-Round';
}

static get actions(){
return {
next: ()=>({
Expand Down

0 comments on commit 47c90b7

Please sign in to comment.