From fdd1e79a2c8f9140122af0370d73e4df5252609d Mon Sep 17 00:00:00 2001 From: bill bittner Date: Wed, 6 Jun 2018 13:45:54 -0700 Subject: [PATCH] renamed app component --- client/build/app.js | 4 ++-- client/src/app.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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;