ci-simulation
v0.2.8
Published
Simulador de crédito imobiliário
Downloads
3
Readme
CI SIMULATION LIBRARY
This is a ci-simulation library for you to create operations in your application.
Required
You need to use 'Redux' in your application to start it.
#installation
npm i --save ci-simulation
Documentation
#Configuration
Before you start using it, you need to do a litle configuration then you'll be able play with your code. See example bellow using 'ReactJs' to your store (source of thruth):
import { combineReducers, compose, createStore} from 'redux';
import { ciSimulationReducers } from "ci-simulation";
const reducers = combineReducers({
ciSetup: persistedSetupSimulation
});
const state = createStore(reducers);
#Setup
Now you can use the actions, see this litle example bellow in a Reactjs component:
import { ciSimulationSelectors, ciSimulationActions } from "ci-simulation";