Compare commits

...

2 Commits

Author SHA1 Message Date
Corbin Crutchley
8fa724483c
Merge pull request #1 from vinceTheProgrammer/master
Moved example console.log() into a .then()
2020-11-02 14:36:55 -08:00
vinceTheProgrammer
6c62c135ad
Moved example console.log() into a .then() 2020-10-26 13:20:24 -05:00

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}`);
});
```