jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
44 lines (43 loc) • 1.04 kB
TypeScript
/**
* @file index.tsx
*
* @fileoverview Shows the users job preferences.
*/
import React from 'react';
export interface JobPreferencesProps {
/**
* The job preferences of the user.
*/
jobPreferences: JobPreferences;
/**
* Item to render for clicking this field.
*/
OnClickElement?: React.ReactNode;
}
export interface JobPreferences {
/**
* The desired occupation.
*/
occupation?: string[];
/**
* The desired salary.
*/
salary?: string;
/**
* The desired locations.
*/
regions?: string[];
/**
* When the applicant is available to start.
*/
availableToStart?: string;
}
interface RegionsProps {
regions: string[];
}
export declare const Regions: ({ regions }: RegionsProps) => JSX.Element;
/**
* Shows an applicant's job prefereces information. Used to display on a resume page.
*/
export declare const JobPreferences: ({ jobPreferences, OnClickElement }: JobPreferencesProps) => JSX.Element;
export default JobPreferences;