-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix-moment-helper-locales
- Loading branch information
Showing
564 changed files
with
95,897 additions
and
28,379 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default { | ||
activateKeepAwake: () => '', | ||
deactivateKeepAwake: () => '' | ||
}; | ||
const activateKeepAwake = () => ''; | ||
const deactivateKeepAwake = () => ''; | ||
|
||
export { activateKeepAwake, deactivateKeepAwake }; |
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,5 +1,5 @@ | ||
export const RectButton = () => 'View'; | ||
export const RectButton = ({ children }) => children; | ||
export const State = () => 'View'; | ||
export const LongPressGestureHandler = () => 'View'; | ||
export const BorderlessButton = () => 'View'; | ||
export const PanGestureHandler = () => 'View'; | ||
export const LongPressGestureHandler = ({ children }) => children; | ||
export const BorderlessButton = ({ children }) => children; | ||
export const PanGestureHandler = ({ children }) => children; |
Oops, something went wrong.