-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from opensrc0/main
fix(facedetector, livelocation tracking): default props pass in params instead of using prop-types
- Loading branch information
Showing
12 changed files
with
135 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,4 +38,6 @@ function FaceDetectorClose({ | |
); | ||
} | ||
|
||
export { FaceDetectorClose }; | ||
|
||
export default FaceDetectorClose; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,4 +32,6 @@ function FaceDetectorFacing({ | |
); | ||
} | ||
|
||
export { FaceDetectorFacing }; | ||
|
||
export default FaceDetectorFacing; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,6 @@ | ||
import FaceDetector from './FaceDetector'; | ||
import FaceDetectorFlash from './FaceDetectorFlash'; | ||
import FaceDetectorClose from './FaceDetectorClose'; | ||
import FaceDetectorFacing from './FaceDetectorFacing'; | ||
export * from './FaceDetector'; | ||
export * from './FaceDetectorClose'; | ||
export * from './FaceDetectorFlash'; | ||
export * from './FaceDetectorFacing'; | ||
|
||
export { | ||
FaceDetector, | ||
FaceDetectorFlash, | ||
FaceDetectorClose, | ||
FaceDetectorFacing, | ||
}; | ||
|
||
export default { | ||
Init: FaceDetector, | ||
Flash: FaceDetectorFlash, | ||
Close: FaceDetectorClose, | ||
Facing: FaceDetectorFacing, | ||
}; | ||
export { default } from './FaceDetector'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.