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;