Refactoring

This commit is contained in:
Rainer Simon 2021-02-21 08:01:14 +01:00
parent 40d49a44ab
commit c29fc007db
3 changed files with 3 additions and 6 deletions

View File

@ -1,4 +1,4 @@
import WebAnnotation from '../WebAnnotation';
import WebAnnotation from './WebAnnotation';
import { v4 as uuid } from 'uuid';
import * as equals from 'fast-deep-equal';

View File

@ -1,9 +1,8 @@
export { default as Editor } from './editor/Editor';
export { default as Autocomplete } from './editor/widgets/Autocomplete';
export { default as createEnvironment } from './Environment';
export { default as I18n } from './i18n';
export { default as WebAnnotation } from './WebAnnotation';
export { default as Selection } from './Selection';
export { default as createEnvironment } from './Environment';
export * from './Icons';
export * from './selection';
export * from './utils';

View File

@ -1,2 +0,0 @@
export { default as Selection } from './Selection';