diff --git a/client/build/app.js b/client/build/app.js index b77df70b..f740da7e 100644 --- a/client/build/app.js +++ b/client/build/app.js @@ -23,7 +23,7 @@ var _MultisitePage = _interopRequireDefault(require("@pages/MultisitePage")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } -var customizedApp = function customizedApp() { +var App = function App() { return _react.default.createElement(_reactRouterDom.Switch, null, _react.default.createElement(_reactRouterDom.Route, { exact: true, path: "/", @@ -53,5 +53,5 @@ var customizedApp = function customizedApp() { })); }; -var _default = customizedApp; +var _default = App; exports.default = _default; \ No newline at end of file diff --git a/client/src/app.js b/client/src/app.js index ce77de14..f6c23062 100644 --- a/client/src/app.js +++ b/client/src/app.js @@ -8,7 +8,7 @@ import ShowPage from '@pages/ShowPage'; import FourOhFourPage from '@pages/FourOhFourPage'; import MultisitePage from '@pages/MultisitePage'; -const customizedApp = () => { +const App = () => { return ( @@ -22,4 +22,4 @@ const customizedApp = () => { ); }; -export default customizedApp; +export default App;