Add migrations for the store

This commit is contained in:
Lei Nelissen
2022-01-03 09:07:30 +01:00
parent 9bf20b1762
commit 56971a9291
3 changed files with 27 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ interface State {
ids: EntityId[];
}
const initialState: State = {
export const initialState: State = {
entities: {},
ids: [],
};