From dc1ded81b8d6c1ef276c476fbe864f23f0a4b93b Mon Sep 17 00:00:00 2001 From: evgeniywas Date: Wed, 7 Jun 2023 21:55:56 +0100 Subject: [PATCH] feat: add layout2 to theme and layouts configs --- src/app/theme-layouts/themeLayoutConfigs.js | 2 ++ src/app/theme-layouts/themeLayouts.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/app/theme-layouts/themeLayoutConfigs.js b/src/app/theme-layouts/themeLayoutConfigs.js index e5dd903..68b0ee5 100644 --- a/src/app/theme-layouts/themeLayoutConfigs.js +++ b/src/app/theme-layouts/themeLayoutConfigs.js @@ -1,7 +1,9 @@ import layout1 from './layout1/Layout1Config'; +import layout2 from './layout2/Layout2Config'; const themeLayoutConfigs = { layout1, + layout2, }; export default themeLayoutConfigs; diff --git a/src/app/theme-layouts/themeLayouts.js b/src/app/theme-layouts/themeLayouts.js index 8b36cf0..07706d5 100644 --- a/src/app/theme-layouts/themeLayouts.js +++ b/src/app/theme-layouts/themeLayouts.js @@ -1,7 +1,9 @@ import layout1 from './layout1/Layout1'; +import layout2 from './layout2/Layout2'; const themeLayouts = { layout1, + layout2, }; export default themeLayouts;