system-praktyk-front/src/provider/dummy/internship.ts
2020-06-12 19:10:18 +02:00

12 lines
253 B
TypeScript

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