Client - init users store

This commit is contained in:
Sam
2021-10-31 09:27:12 +01:00
parent 1911b03db5
commit 6a002592f0
13 changed files with 217 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import { IUsersState } from '@/store/modules/users/types'
import { IPagination } from '@/types/api'
export const usersState: IUsersState = {
users: [],
loading: false,
pagination: <IPagination>{},
}