@openmrs/esm-styleguide
Version:
The styleguide for OpenMRS SPA
11 lines (10 loc) • 316 B
TypeScript
import React from 'react';
interface LocationPickerProps {
selectedLocationUuid?: string;
defaultLocationUuid?: string;
locationTag?: string;
locationsPerRequest?: number;
onChange: (locationUuid?: string) => void;
}
export declare const LocationPicker: React.FC<LocationPickerProps>;
export {};