Skip to content

Commit 5c28778

Browse files
committed
fmt
1 parent e38b10f commit 5c28778

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

Keyframes.js

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
const PTRKeyframesView = requireNativeComponent('PTRKeyframesView', Keyframes);
1010

1111
type Props = {
12-
onStop: Function
12+
onStop: Function,
1313
};
1414

1515
class Keyframes extends React.Component<Props> {
@@ -23,15 +23,11 @@ class Keyframes extends React.Component<Props> {
2323
if (this.props.onStop) {
2424
this.props.onStop();
2525
}
26-
}
26+
};
2727

2828
render() {
2929
return (
30-
<PTRKeyframesView
31-
onStop={this.onStop}
32-
ref={this.ref}
33-
{...this.props}
34-
/>
30+
<PTRKeyframesView onStop={this.onStop} ref={this.ref} {...this.props} />
3531
);
3632
}
3733

0 commit comments

Comments
 (0)