pablorc/snaaake

View on GitHub
www/js/reducers/options.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

const initialState = {
  bounds: {
    width: 50,
    height: 30
  }
}

export const options = (state = initialState, action) => {
  return state;
}