mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[Flare] Move all event responders to dom directory (#15981)
This commit is contained in:
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const Drag = require('./src/Drag');
|
||||
const Drag = require('./src/dom/Drag');
|
||||
|
||||
module.exports = Drag.default || Drag;
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const FocusScope = require('./src/FocusScope');
|
||||
const FocusScope = require('./src/dom/FocusScope');
|
||||
|
||||
module.exports = FocusScope.default || FocusScope;
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const Focus = require('./src/Focus');
|
||||
const Focus = require('./src/dom/Focus');
|
||||
|
||||
module.exports = Focus.default || Focus;
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const Hover = require('./src/Hover');
|
||||
const Hover = require('./src/dom/Hover');
|
||||
|
||||
module.exports = Hover.default || Hover;
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const Press = require('./src/Press');
|
||||
const Press = require('./src/dom/Press');
|
||||
|
||||
module.exports = Press.default || Press;
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const Scroll = require('./src/Scroll');
|
||||
const Scroll = require('./src/dom/Scroll');
|
||||
|
||||
module.exports = Scroll.default || Scroll;
|
||||
|
||||
Vendored
+1
-1
@@ -9,6 +9,6 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
const Swipe = require('./src/Swipe');
|
||||
const Swipe = require('./src/dom/Swipe');
|
||||
|
||||
module.exports = Swipe.default || Swipe;
|
||||
|
||||
Reference in New Issue
Block a user