This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { logger } from "configs/logger"; | |
| import * as React from "react"; | |
| const log = logger("useScroll"); | |
| // def | |
| export declare type ScrollPosStatusType = { | |
| y: number | |
| } | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { UseOutsideClick } from "./types"; | |
| import * as React from "react"; | |
| // def | |
| export declare type UseOutsideClick = { | |
| ref: React.MutableRefObject<HTMLElement> | |
| callback: () => any | |
| } | |
| export const useOutsideClick = (input: UseOutsideClick): void => { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import * as React from 'react' | |
| import { | |
| UseResponsiveStatusInputType, | |
| UseResponsiveStatusOutputType, | |
| ScreenSizeStatusType | |
| } from './types'; | |
| // def | |
| export declare type ScreenSizeStatusType = { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { UsePreviousInput } from "./types"; | |
| import * as React from "react"; | |
| import { logger } from 'configs/logger'; | |
| const log = logger("usePrevious"); | |
| // def | |
| export declare type UsePreviousInput<S extends any> = { | |
| value: S | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import Axios, { AxiosError, AxiosResponse } from "axios"; | |
| import { logger } from "configs/logger"; | |
| import * as React from "react"; | |
| import { UseFetchInput, UseFetchOutput } from "./types"; | |
| const log = logger("useFetch"); | |
| // def | |
| export declare type UseFetchInput = AxiosRequestConfig; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | .input-box { | |
| width: 300px; | |
| margin: 0 auto; | |
| } | |
| .search-input { | |
| text-align: center; | |
| font-size: 1em; | |
| width: 100%; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import { logger } from "configs/logger"; | |
| import * as React from "react"; | |
| import "./style.scss"; | |
| const log = logger("Header"); | |
| declare type CountryType = { | |
| name: string; | |
| code: string; | |
| }; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | .outerBox { | |
| position: relative; | |
| padding: 8px 8px; | |
| max-width: 100%; | |
| width: 100%; | |
| min-width: 310; | |
| } | |
| .innerBox { | |
| display: flex; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | mport { logger } from 'configs/logger'; | |
| import * as React from 'react'; | |
| import "./style.scss"; | |
| const log = logger("Header") | |
| const RightArrowSvg = require("src/assets/right-arrow.svg"); | |
| const LogoSvg = require("src/assets/logo.svg"); | |
| const SingleLineListBox: React.FunctionComponent<{}> = (props) => { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * | |
| * request url check worker. | |
| * | |
| * This worker is a nested worker. called by 'requestDomainWorker'. | |
| * | |
| * | |
| * check the request url has requested in the past | |
| * if so, don't need to do anything since data exists in store | |
| * if no, prep for request to backend api | 
NewerOlder