mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-22 23:25:20 +00:00
fix lint warnings
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import React, {PropTypes} from 'react';
|
||||
import React from 'react';
|
||||
import createReactNativeComponentClass from 'react/lib/createReactNativeComponentClass';
|
||||
import Shape from './Shape';
|
||||
import {CircleAttributes} from '../lib/attributes';
|
||||
@@ -27,7 +27,7 @@ class Circle extends Shape {
|
||||
render() {
|
||||
let props = this.props;
|
||||
return <RNSVGCircle
|
||||
ref={ele => this.root = ele}
|
||||
ref={ele => {this.root = ele;}}
|
||||
{...this.extractProps(props)}
|
||||
cx={props.cx.toString()}
|
||||
cy={props.cy.toString()}
|
||||
|
||||
Reference in New Issue
Block a user