Skip to content

Instantly share code, notes, and snippets.

@tanhauhau
Created November 16, 2017 15:39
Show Gist options
  • Save tanhauhau/ce1d1c2ff491ce2f22080010ce4a4e6c to your computer and use it in GitHub Desktop.
Save tanhauhau/ce1d1c2ff491ce2f22080010ce4a4e6c to your computer and use it in GitHub Desktop.
Inducer Example
import React from 'react';
import gameReducer from './gameReducer';
import injectReducer from 'inducer';
class CustomComponent extends React.Component {
// component logic here
}
export default injectReducer({
game: gameReducer
})(CustomComponent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment