summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/actions/tests/fixtures/reactComponent.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/debugger/src/actions/tests/fixtures/reactComponent.js')
-rw-r--r--devtools/client/debugger/src/actions/tests/fixtures/reactComponent.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/devtools/client/debugger/src/actions/tests/fixtures/reactComponent.js b/devtools/client/debugger/src/actions/tests/fixtures/reactComponent.js
new file mode 100644
index 0000000000..526c852d99
--- /dev/null
+++ b/devtools/client/debugger/src/actions/tests/fixtures/reactComponent.js
@@ -0,0 +1,7 @@
+import React, { Component } from "react";
+
+class FixtureComponent extends Component {
+ render() {
+ return null;
+ }
+}