UNPKG

new-react-cli

Version:

A simple React CLI to generate components instantly and more.

71 lines (16 loc) 789 B
module.exports = `//Generate with new-react-cli : ${(new Date()).toGMTString()} //Free training on https://mudey.fr import React, { lazy, Suspense } from 'react'; const LazyTemplateName = lazy(() => import('./TemplateName')); const TemplateName = (props: JSX.IntrinsicAttributes & { children?: React.ReactNode; }) => ( <Suspense fallback={null}> <LazyTemplateName {...props} /> </Suspense> ); export default TemplateName; //Generate with new-react-cli : ${(new Date()).toGMTString()} //Free training on sur https://mudey.fr //Teacher Profile : https://mudey.fr/user/espero-akpoli //Teacher Email : eakpoli@mudey.fr //Teacher WhatsApp : +33 7 77 67 41 57 `;