DefinitelyTyped/types/react-native-modal-dropdown/react-native-modal-dropdown-tests.tsx
Carlos 0fd7e1bc6f [react-native-modal-dropdown] Add definitions (#31735)
* react-native-modal-dropdown: initial definitions

* fix the project path and export class

* fix member-access
2019-01-01 10:41:21 -08:00

11 lines
247 B
TypeScript

import * as React from 'react';
import ModalDropdown from "react-native-modal-dropdown";
class Test extends React.Component<any> {
render() {
return (
<ModalDropdown options={["option 1", "option 2"]}/>
);
}
}