UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

44 lines (43 loc) 1.04 kB
/** * @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;