import React, { Suspense } from 'react' import { Redirect, Route, Switch } from 'react-router-dom' import { CContainer } from '@coreui/react' // routes config import routes from '../routes' const loading = (
) const TheContent = () => { return (
{routes.map((route, idx) => { return ( route.component && ( ( <> )} /> ) ) })}
) } export default React.memo(TheContent)