mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-21 14:25:14 +00:00
17 lines
438 B
JavaScript
17 lines
438 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);
|
|
});
|
|
//noinspection JSUnusedGlobalSymbols
|
|
this.state = this.touchableGetInitialState();
|
|
}
|
|
}
|
|
|
|
export default Shape;
|