Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 8f73060

Browse files
fixed relativeremoved relative imports on top level component
1 parent 14e76ab commit 8f73060

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/SqlStreamStoreBrowser.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ import {
1010
} from '@material-ui/core';
1111
import { MuiThemeProvider } from '@material-ui/core/styles';
1212
import { SvgIconProps } from '@material-ui/core/SvgIcon';
13-
import { JSONSchema7 } from 'json-schema';
14-
import React, { ComponentType, createElement } from 'react';
15-
import { Observable as obs } from 'rxjs';
1613
import {
1714
AuthorizationProvider,
1815
Loading,
1916
mount,
2017
NavigationProvider,
2118
Notifications,
2219
withAuthorization,
23-
} from './components';
20+
} from 'components';
2421
import {
2522
LightbulbFull,
2623
LightbulbOutline,
2724
SqlStreamStore,
28-
} from './icons';
29-
import { connect, createState } from './reactive';
30-
import { actions, store, Viewer } from './stream-store';
31-
import themes from './themes';
32-
import { AuthorizationProps, HalLink, HalLinks } from './types';
33-
import { mediaTypes, preventDefault } from './utils';
25+
} from 'icons';
26+
import { JSONSchema7 } from 'json-schema';
27+
import React, { ComponentType, createElement } from 'react';
28+
import { connect, createState } from 'reactive';
29+
import { Observable as obs } from 'rxjs';
30+
import { actions, store, Viewer } from 'stream-store';
31+
import themes from 'themes';
32+
import { AuthorizationProps, HalLink, HalLinks } from 'types';
33+
import { mediaTypes, preventDefault } from 'utils';
3434

3535
const getSelfAlias = (links: HalLinks) =>
3636
Object.keys(links)

0 commit comments

Comments
 (0)