All files / src/form/gantt GanttComponentWrap.tsx

50% Statements 2/4
100% Branches 0/0
0% Functions 0/2
66.66% Lines 2/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15      5x   5x                  
import React, { ReactElement } from 'react';
import { GanttComponentProps } from './GanttComponent';
 
const GanttComponent = React.lazy(() => import("./GanttComponent"));
 
const GanttComponentWrap = (props: GanttComponentProps): ReactElement => {
  return (
    <React.Suspense fallback={<div>Loading...</div>}>
      <GanttComponent {...props} />
    </React.Suspense>
  );
};
 
export default GanttComponentWrap;