X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cf83b358f087a87b5ff095d3ed7a8c6920c60ffe..b5b75b89e923864389f814af97974a55b69a343f:/src/views-components/not-found-dialog/not-found-dialog.tsx diff --git a/src/views-components/not-found-dialog/not-found-dialog.tsx b/src/views-components/not-found-dialog/not-found-dialog.tsx index 2410ddcbb0..eee64b66b9 100644 --- a/src/views-components/not-found-dialog/not-found-dialog.tsx +++ b/src/views-components/not-found-dialog/not-found-dialog.tsx @@ -2,15 +2,15 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from "react"; +import React from "react"; import { Dispatch } from "redux"; import { connect } from "react-redux"; -import { RootState } from '~/store/store'; -import { withDialog, WithDialogProps } from "~/store/dialog/with-dialog"; -import { NOT_FOUND_DIALOG_NAME } from '~/store/not-found-panel/not-found-panel-action'; +import { RootState } from 'store/store'; +import { withDialog, WithDialogProps } from "store/dialog/with-dialog"; +import { NOT_FOUND_DIALOG_NAME } from 'store/not-found-panel/not-found-panel-action'; import { Dialog, DialogContent, DialogActions, Button, withStyles, StyleRulesCallback, WithStyles } from '@material-ui/core'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { NotFoundPanel } from "~/views/not-found-panel/not-found-panel"; +import { ArvadosTheme } from 'common/custom-theme'; +import { NotFoundPanel } from "views/not-found-panel/not-found-panel"; type CssRules = 'tag';