9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import { configureStore } from '@reduxjs/toolkit'
|
|
|
|
import astReducer from "./lib/ast"
|
|
|
|
export default configureStore({
|
|
reducer: {
|
|
ast: astReducer,
|
|
},
|
|
}); |