react-native-contacts 6๋ฒ์ ์์ ๋ฐ๊ฟ์ค์ผํฉ๋๋ค.
์ฐธ๊ณ ํด์ฃผ์ธ์ const getContacts = () => { requestContactPermission().then((didGetPermission) => { if (didGetPermission) { Contacts.getAll() .then((contacts) => { // console.warn(contacts); setMyContacts(contacts); }) .catch((err) => { console.error(err); throw err; }); } else { alert('no permission'); } }); };