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

export function Research2() {
  const [value] = React.useState(1)

  return <div id="research">foo bar {value}</div>
}