- Finished Booking an Event

- Starting UsersList (creating CGridTableRec component to view and edit a db table)
This commit is contained in:
Paolo Arena
2019-10-13 20:46:09 +02:00
parent 5803cfb2a4
commit 96b7b7a48b
25 changed files with 27105 additions and 104 deletions

View File

@@ -24,7 +24,7 @@ export interface IEvents {
export interface IBookedEvent {
_id?: any
userId: any
userId: string
id_bookedevent?: any
numpeople: number
infoevent: string

View File

@@ -35,7 +35,7 @@ export interface IUserState {
}
export interface IUserList {
userId: string
_id: string
username: string
name?: string
surname?: string

View File

@@ -1,5 +1,3 @@
import { IBookingState } from '@src/model/BookingStore'
export * from './UserStore'
export * from './GlobalStore'
export * from './signin-option'
@@ -13,4 +11,3 @@ export * from './Projects'
export * from './Calendar'
export * from './Estimate'
export * from './BookingStore'