Skip to content
Snippets Groups Projects
Commit 0ac5ac1d authored by Jack Reed's avatar Jack Reed
Browse files

Move require of scss to the top level component

parent bbb8fbf3
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
"coverageDirectory": "<rootDir>/coverage", "coverageDirectory": "<rootDir>/coverage",
"coverageReporters": ["html", "lcov"], "coverageReporters": ["html", "lcov"],
"moduleNameMapper": { "moduleNameMapper": {
"\\.css$": "<rootDir>/__mocks__/css.js" "\\.s?css$": "<rootDir>/__mocks__/css.js"
}, },
"setupFiles": [ "setupFiles": [
"<rootDir>/setupJest.js" "<rootDir>/setupJest.js"
......
...@@ -5,6 +5,7 @@ import Fullscreen from 'react-full-screen'; ...@@ -5,6 +5,7 @@ import Fullscreen from 'react-full-screen';
import { I18nextProvider } from 'react-i18next'; import { I18nextProvider } from 'react-i18next';
import i18n from '../i18n'; import i18n from '../i18n';
import WorkspaceArea from '../containers/WorkspaceArea'; import WorkspaceArea from '../containers/WorkspaceArea';
import '../styles/index.scss';
/** /**
* This is the top level Mirador component. * This is the top level Mirador component.
......
import MiradorViewer from './lib/MiradorViewer'; import MiradorViewer from './lib/MiradorViewer';
import './styles/index.scss';
/** /**
* Default Mirador instantiation * Default Mirador instantiation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment