Skip to content

Commit a37a5f1

Browse files
committed
Fix NowIndicator name
1 parent a6fd2dc commit a37a5f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/timeline/NowIndicator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export interface NowIndicatorProps {
88
styles: {[key: string]: ViewStyle | TextStyle};
99
}
1010

11-
const TodayIndicator = (props: NowIndicatorProps) => {
11+
const NowIndicator = (props: NowIndicatorProps) => {
1212
const {styles} = props;
1313
const now = new Date();
1414
const hour = now.getHours();
@@ -24,4 +24,4 @@ const TodayIndicator = (props: NowIndicatorProps) => {
2424
);
2525
};
2626

27-
export default TodayIndicator;
27+
export default NowIndicator;

0 commit comments

Comments
 (0)