Updated components, style modules

This commit is contained in:
mgabdev
2019-08-13 11:54:29 -04:00
parent ecd081b5ed
commit c58d621daf
57 changed files with 1263 additions and 1205 deletions

View File

@@ -0,0 +1,11 @@
import ColumnIndicator from '../../components/column_indicator';
export default class GenericNotFound extends PureComponent {
render() {
return (
<ColumnIndicator type='missing' />
)
}
}

View File

@@ -1,7 +1 @@
import ColumnIndicator from '../../components/column_indicator';
const GenericNotFound = () => (
<ColumnIndicator type='missing' />
);
export default GenericNotFound;
export { default } from './generic_not_found';