export interface Work {
    company?: string;
    companyID?: string;
    title?: string;
    companySize?: string;
    startDate?: string;
    endDate?: string;
    industry?: string;
}
export default Work;
