The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

configureStore.jsx 181 B

123456
  1. import { createStore } from 'redux';
  2. import appReducer from '../reducers';
  3. export default function configureStore(initialState) {
  4. return createStore(appReducer, initialState);
  5. }