2021-01-03 14:25:43 +05:30
|
|
|
const createState = ({ query }) => ({
|
|
|
|
query,
|
2021-01-29 00:20:46 +05:30
|
|
|
groups: [],
|
|
|
|
fetchingGroups: false,
|
2021-02-22 17:27:13 +05:30
|
|
|
projects: [],
|
|
|
|
fetchingProjects: false,
|
2021-01-03 14:25:43 +05:30
|
|
|
});
|
|
|
|
export default createState;
|