19 lines
408 B
TypeScript
19 lines
408 B
TypeScript
import type { ReferenceItem, RelationFormValues } from "../types";
|
|
|
|
export const EMPTY_REFERENCE_ITEM: ReferenceItem = {
|
|
id: "",
|
|
firstName: "",
|
|
lastName: "",
|
|
relationship: "",
|
|
jobTitle: "",
|
|
workplaceName: "",
|
|
phoneNumber: "",
|
|
};
|
|
|
|
export const RELATION_INITIAL_VALUES: RelationFormValues = {
|
|
relations: [
|
|
{ ...EMPTY_REFERENCE_ITEM, id: 1 },
|
|
{ ...EMPTY_REFERENCE_ITEM, id: 2 },
|
|
],
|
|
};
|