Commit 077d5a23 authored by Mohak Trivedi's avatar Mohak Trivedi
Browse files

fixed indentation

parent f61a873e
......@@ -6,13 +6,13 @@ const createStore = () => {
const store = {};
store.state = initialState;
// TODO: Implement the getState() such that it returns the state.
store.getState = () => {
// TODO: Implement the getState() such that it returns the state.
store.getState = () => {
}
}
//User to implement it in future milestones
store.incrementCount = () => {
//User to implement it in future milestones
store.incrementCount = () => {
};
return store;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment