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

export const LazyComponent = () => {
  return (
    <span id="lazy">inner content</span>
  );
};

export default LazyComponent;