-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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 #8813 from Expensify/marcaaron-renameMarkerBadgeTo…
…FloatingUnreadMessageCounter [No QA] Update various names in `ReportActionsView`
- Loading branch information
Showing
10 changed files
with
94 additions
and
98 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
File renamed without changes.
17 changes: 17 additions & 0 deletions
17
...pages/home/report/FloatingMessageCounter/FloatingMessageCounterContainer/index.android.js
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import {View, Animated} from 'react-native'; | ||
import styles from '../../../../../styles/styles'; | ||
import floatingMessageCounterContainerPropTypes from './floatingMessageCounterContainerPropTypes'; | ||
|
||
const FloatingMessageCounterContainer = props => ( | ||
<Animated.View style={[styles.floatingMessageCounterWrapperAndroid, ...props.containerStyles]}> | ||
<View style={styles.floatingMessageCounterSubWrapperAndroid}> | ||
{props.children} | ||
</View> | ||
</Animated.View> | ||
); | ||
|
||
FloatingMessageCounterContainer.propTypes = floatingMessageCounterContainerPropTypes; | ||
FloatingMessageCounterContainer.displayName = 'FloatingMessageCounterContainer'; | ||
|
||
export default FloatingMessageCounterContainer; |
15 changes: 15 additions & 0 deletions
15
src/pages/home/report/FloatingMessageCounter/FloatingMessageCounterContainer/index.js
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react'; | ||
import {Animated} from 'react-native'; | ||
import styles from '../../../../../styles/styles'; | ||
import floatingMessageCounterContainerPropTypes from './floatingMessageCounterContainerPropTypes'; | ||
|
||
const FloatingMessageCounterContainer = props => ( | ||
<Animated.View style={[styles.floatingMessageCounterWrapper, ...props.containerStyles]}> | ||
{props.children} | ||
</Animated.View> | ||
); | ||
|
||
FloatingMessageCounterContainer.propTypes = floatingMessageCounterContainerPropTypes; | ||
FloatingMessageCounterContainer.displayName = 'FloatingMessageCounterContainer'; | ||
|
||
export default FloatingMessageCounterContainer; |
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
17 changes: 0 additions & 17 deletions
17
src/pages/home/report/MarkerBadge/MarkerBadgeContainer/index.android.js
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
src/pages/home/report/MarkerBadge/MarkerBadgeContainer/index.js
This file was deleted.
Oops, something went wrong.
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