I do not see fastclick list on devDependencies of package.json .
Should I install fastclick by myself? Or, just add alias 'react-tap-event-plugin': 'react-lite/lib/react-tap-event-plugin'?
react-lite/lib/react-tap-event-plugin.js:
'use strict';
var Fastclick = require('fastclick');
module.exports = function injectTapEventPlugin() {
var supportTouch = ('ontouchstart' in document);
if (supportTouch) {
Fastclick.attach(document.body);
}
};