/** * This component is a wrapper that display a loader while the children components have their rendering suspended */ import React, { Suspense } from 'react'; export const Loader: React.FC = ({children }) => { const loading = (
); return ( {children} ); }