|
|
@@ -2,12 +2,12 @@ import React, {lazy, Suspense} from 'react';
|
|
|
import {BrowserRouter, Route, Link, Switch} from 'react-router-dom';
|
|
|
import {hot} from 'react-hot-loader/root';
|
|
|
|
|
|
-import ApplicationLayout from './components/layout/application_layout';
|
|
|
+import ApplicationLayout from './components/layout/ApplicationLayout';
|
|
|
|
|
|
-const Pokemon = lazy((): Promise<any> => import('./components/pages/pokemon'));
|
|
|
-const NotFound = lazy((): Promise<any> => import('./components/pages/not_found'));
|
|
|
-const TestComponent = lazy((): Promise<any> => import('./components/test_component'));
|
|
|
-const RelayComponent = lazy((): Promise<any> => import('./components/relay_component'));
|
|
|
+const Pokemon = lazy((): Promise<any> => import('./components/pages/Pokemon'));
|
|
|
+const NotFound = lazy((): Promise<any> => import('./components/pages/NotFound'));
|
|
|
+const TestComponent = lazy((): Promise<any> => import('./components/TestComponent'));
|
|
|
+const RelayComponent = lazy((): Promise<any> => import('./components/RelayComponent'));
|
|
|
|
|
|
import './assets/stylesheets/app.scss';
|
|
|
|