We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6fd2dc commit a37a5f1Copy full SHA for a37a5f1
src/timeline/NowIndicator.tsx
@@ -8,7 +8,7 @@ export interface NowIndicatorProps {
8
styles: {[key: string]: ViewStyle | TextStyle};
9
}
10
11
-const TodayIndicator = (props: NowIndicatorProps) => {
+const NowIndicator = (props: NowIndicatorProps) => {
12
const {styles} = props;
13
const now = new Date();
14
const hour = now.getHours();
@@ -24,4 +24,4 @@ const TodayIndicator = (props: NowIndicatorProps) => {
24
);
25
};
26
27
-export default TodayIndicator;
+export default NowIndicator;
0 commit comments