From d8a814c1b4a24a64b5840dedc27558a1764c51ff Mon Sep 17 00:00:00 2001 From: hhimanshu Date: Mon, 21 Jun 2021 18:02:33 -0700 Subject: [PATCH] feat(DEV-13): format styles --- src/containers/ContentContainer.tsx | 10 ++++++---- src/index.tsx | 19 ++++++++++++------- webpack.dev.js | 4 ++-- 3 files changed, 20 insertions(+), 13 deletions(-) diff --git a/src/containers/ContentContainer.tsx b/src/containers/ContentContainer.tsx index e48241b..3140fff 100644 --- a/src/containers/ContentContainer.tsx +++ b/src/containers/ContentContainer.tsx @@ -3,7 +3,9 @@ import { Content } from '../components/Content'; import AppShell from '../components/AppShell'; export const ContentContainer = () => { - return - - ; -}; \ No newline at end of file + return ( + + + + ); +}; diff --git a/src/index.tsx b/src/index.tsx index a160cd3..f0ef01b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -13,12 +13,17 @@ if (process.env.NODE_ENV === 'production') { } // This is where your application content can be mounted -const Root = () => - - - - -; - +const Root = () => ( + + + + + + + + + + +); ReactDOM.render(, document.getElementById('root')); diff --git a/webpack.dev.js b/webpack.dev.js index c7701b9..3d18e93 100644 --- a/webpack.dev.js +++ b/webpack.dev.js @@ -7,6 +7,6 @@ module.exports = merge(common, { devServer: { contentBase: './dist', hot: true, - historyApiFallback: true - } + historyApiFallback: true, + }, });