refactor: correct imports due to deleted files

This commit is contained in:
2023-06-02 21:34:08 +01:00
parent 9025deb6fc
commit 2b61f24e45
3 changed files with 0 additions and 14 deletions

View File

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

View File

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

View File

@@ -7,7 +7,6 @@ import './styles/app-components.css';
import './styles/app-utilities.css';
import { createRoot } from 'react-dom/client';
import App from './app/App';
import * as serviceWorker from './serviceWorker';
import reportWebVitals from './reportWebVitals';
const container = document.getElementById('root');
@@ -15,8 +14,3 @@ const root = createRoot(container);
root.render(<App />);
reportWebVitals();
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: http://bit.ly/CRA-PWA
serviceWorker.unregister();