aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/react/test/fixtures/react-component/src/components/GetSearch.jsx
blob: d3fee2f9a71110f3335f182aaef6464a7a3a56a4 (plain) (blame)
1
2
3
4
5
6
7
import React from 'react';

function GetSearch() {
  return (<div>{window.location.search}</div>);
}

export default GetSearch