add a sample AuthorizationServer to the repo and put traffic-police app in a separate folder

This commit is contained in:
Muhammad Azeez
2021-01-16 21:20:05 +03:00
parent 91810950db
commit 85cd111f5f
201 changed files with 10992 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
import { createStore, compose } from 'redux';
import rootReducer from './reducers'
const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
const initialState = {}
const store = createStore(
rootReducer,
initialState,
composeEnhancers()
)
export default store;