UNPKG

softchatjs-react-native

Version:

React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com

12 lines (9 loc) 272 B
import React from 'react'; import { UserMeta } from 'softchatjs-core'; type UserListProps = { data: Array<UserMeta>; goToChat: () => void; title?: string; }; declare function UserList(props: UserListProps): React.JSX.Element; export { UserList as default };