system-praktyk-front/src/provider/dummy/internship.ts
2020-06-13 00:12:44 +02:00

13 lines
287 B
TypeScript

import { Nullable } from "@/helpers";
import { Internship, InternshipType } from "@/data";
export const emptyInternship: Nullable<Internship> = {
intern: null,
endDate: null,
startDate: null,
type: null,
program: null,
isAccepted: false,
lengthInWeeks: 0,
}