Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / features / Locale / LocaleModalTrigger / LocaleModalTrigger.d.ts
Size: Mime:
/**
 * @file list of language options in top bar with modal
 *
 * @TODO need to add localStorage to save this
 *
 * @NOTE was using this before to mock snackbar
 *    const snacked = this.state.isModalVisible ? <ToastSnackbar /> : null
 *    import ToastSnackbar from 'atoms/ToastSnackbar'
 */
import * as React from 'react';
import { HeaderLocaleProps } from './typings';
/**
 * was HeaderLocale
 */
declare class LocaleModalTrigger extends React.Component<HeaderLocaleProps> {
    handleMenuClick(): void;
    render(): JSX.Element;
}
export { LocaleModalTrigger };