This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// We only need to import the modules necessary for initial render | |
import CoreLayout from '../layouts/CoreLayout/CoreLayout'; | |
import Home from './Home'; | |
import LoginRoute from './Login'; | |
import SignupRoute from './Signup'; | |
import DashboardRoute from './Secure/Dashboard'; | |
import LeadsRoute from './Secure/Leads'; | |
import NotFound from './NotFound'; | |
/* Note: Instead of using JSX, we recommend using react-router |
OlderNewer