aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/react/test/fixtures/react-component/src/components/GetSearch.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/react/test/fixtures/react-component/src/components/GetSearch.jsx')
-rw-r--r--packages/integrations/react/test/fixtures/react-component/src/components/GetSearch.jsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/integrations/react/test/fixtures/react-component/src/components/GetSearch.jsx b/packages/integrations/react/test/fixtures/react-component/src/components/GetSearch.jsx
new file mode 100644
index 000000000..d3fee2f9a
--- /dev/null
+++ b/packages/integrations/react/test/fixtures/react-component/src/components/GetSearch.jsx
@@ -0,0 +1,7 @@
+import React from 'react';
+
+function GetSearch() {
+ return (<div>{window.location.search}</div>);
+}
+
+export default GetSearch