Moved example console.log() into a .then()

This commit is contained in:
vinceTheProgrammer 2020-10-26 13:20:24 -05:00 committed by GitHub
parent 25e1611a0b
commit 6c62c135ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,5 +28,7 @@ import {selectDirectory} from 'react-native-immersive-bars';
// ...
selectDirectory((path) => console.log(`The path is ${path}`));
selectDirectory().then((path) => {
console.log(`The path is ${path}`);
});
```