GT2/GT2-iOS/node_modules/react-native-svg/elements/Shape.js
2018-02-12 17:26:06 +00:00

15 lines
393 B
JavaScript

import {Component} from 'react';
import SvgTouchableMixin from '../lib/SvgTouchableMixin';
import _ from 'lodash';
class Shape extends Component {
constructor() {
super(...arguments);
_.forEach(SvgTouchableMixin, (method, key) => {
this[key] = method.bind(this);
});
this.state = this.touchableGetInitialState();
}
}
export default Shape;