Add components to operational page form
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
|
||||
export interface StatusPageComponentRecord {
|
||||
collectionId: string;
|
||||
collectionName: string;
|
||||
id: string;
|
||||
operational_status_id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
service_id: string;
|
||||
server_id: string;
|
||||
display_order: number;
|
||||
created: string;
|
||||
updated: string;
|
||||
}
|
||||
|
||||
export interface StatusPageComponentState {
|
||||
data: StatusPageComponentRecord[] | null;
|
||||
loading: boolean;
|
||||
error: string | null;
|
||||
}
|
||||
Reference in New Issue
Block a user