-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User activity components #70
Conversation
@@ -5,6 +5,7 @@ export type UserMetric = { | |||
id: string, | |||
name: string, | |||
picture: string, | |||
url?: string, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected ':' and instead saw '?'.
Expected an identifier and instead saw ':'.
Expected '}' to match '{' from line 4 and instead saw 'string'.
// @flow | ||
import React from 'react'; | ||
import Card from 'infra/component/Card'; | ||
import type { TimeRangeMetric } from '../service/timeRangeMetric'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
Expected 'from' and instead saw '{'.
Expected '(string)' and instead saw 'TimeRangeMetric'.
Missing semicolon.
Unrecoverable syntax error. (4% scanned).
@@ -0,0 +1,95 @@ | |||
// @flow | |||
import React from 'react'; | |||
import Card from 'infra/component/Card'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
@@ -0,0 +1,95 @@ | |||
// @flow | |||
import React from 'react'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'import' is only available in ES6 (use 'esversion: 6').
Codecov Report
@@ Coverage Diff @@
## master #70 +/- ##
=========================================
- Coverage 21.54% 21.5% -0.05%
=========================================
Files 43 44 +1
Lines 478 493 +15
Branches 103 106 +3
=========================================
+ Hits 103 106 +3
- Misses 375 387 +12
Continue to review full report at Codecov.
|
No description provided.