feat: add layout2 to theme and layouts configs

This commit is contained in:
2023-06-07 21:55:56 +01:00
parent 85706a5819
commit dc1ded81b8
2 changed files with 4 additions and 0 deletions

View File

@@ -1,7 +1,9 @@
import layout1 from './layout1/Layout1Config'; import layout1 from './layout1/Layout1Config';
import layout2 from './layout2/Layout2Config';
const themeLayoutConfigs = { const themeLayoutConfigs = {
layout1, layout1,
layout2,
}; };
export default themeLayoutConfigs; export default themeLayoutConfigs;

View File

@@ -1,7 +1,9 @@
import layout1 from './layout1/Layout1'; import layout1 from './layout1/Layout1';
import layout2 from './layout2/Layout2';
const themeLayouts = { const themeLayouts = {
layout1, layout1,
layout2,
}; };
export default themeLayouts; export default themeLayouts;