File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
src/sentry/static/sentry/app/views/organizationEventsV2 Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,22 @@ import EventDetails from './eventDetails';
17
17
import { ALL_VIEWS } from './data' ;
18
18
import { getCurrentView } from './utils' ;
19
19
20
- export default class OrganizationEventsV2 extends React . Component {
20
+ type Props = {
21
+ organization : any ;
22
+ location : any ;
23
+ router : any ;
24
+ // TODO: what is this?
25
+ params : any ;
26
+ } ;
27
+
28
+ export default class OrganizationEventsV2 extends React . Component < Props > {
21
29
static propTypes = {
22
30
organization : SentryTypes . Organization . isRequired ,
23
31
location : PropTypes . object . isRequired ,
24
32
router : PropTypes . object . isRequired ,
25
33
} ;
26
34
27
- renderTabs ( ) {
35
+ renderTabs ( ) : React . ReactNode {
28
36
const { organization} = this . props ;
29
37
const currentView = getCurrentView ( this . props . location . query . view ) ;
30
38
You can’t perform that action at this time.
0 commit comments