aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/time_counter.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/components/time_counter.tsx')
-rw-r--r--packages/instant/src/components/time_counter.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/components/time_counter.tsx b/packages/instant/src/components/time_counter.tsx
index f9b68163c..93dc497d5 100644
--- a/packages/instant/src/components/time_counter.tsx
+++ b/packages/instant/src/components/time_counter.tsx
@@ -16,7 +16,7 @@ interface TimeCounterState {
elapsedSeconds: number;
}
-export class TimeCounter extends React.Component<TimeCounterProps, TimeCounterState> {
+export class TimeCounter extends React.PureComponent<TimeCounterProps, TimeCounterState> {
public state = {
elapsedSeconds: 0,
};