diff options
Diffstat (limited to 'packages/integrations/react/test/fixtures/react-component/src/components/LazyComponent.jsx')
-rw-r--r-- | packages/integrations/react/test/fixtures/react-component/src/components/LazyComponent.jsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/integrations/react/test/fixtures/react-component/src/components/LazyComponent.jsx b/packages/integrations/react/test/fixtures/react-component/src/components/LazyComponent.jsx new file mode 100644 index 000000000..b43aa36be --- /dev/null +++ b/packages/integrations/react/test/fixtures/react-component/src/components/LazyComponent.jsx @@ -0,0 +1,9 @@ +import React from 'react'; + +export const LazyComponent = () => { + return ( + <span id="lazy">inner content</span> + ); +}; + +export default LazyComponent; |