mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* react-native-modal-dropdown: initial definitions * fix the project path and export class * fix member-access
11 lines
247 B
TypeScript
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"]}/>
|
|
);
|
|
}
|
|
}
|