UNPKG

@kalamazoo/focused-task-close-account

Version:

This package contains all of the UI components needed to assemble the focused tasks for deactivating and deleting users' accounts in accordance with the GDPR "Right to be forgotten".

16 lines (15 loc) 426 B
import * as React from 'react'; import { DropDownListProps } from './types'; declare type State = { isExpanded: boolean; }; export declare class DropdownList extends React.Component<DropDownListProps, State> { state: { isExpanded: boolean; }; showDropdownList: () => void; hideDropdownList: () => void; getVisibleSites: () => string[]; render(): JSX.Element; } export default DropdownList;