X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/6656a000d2992676dcfcbed51b34d327d304d05e..b3b92e78c7da8fc6a2f4db78746cbc10bb11cc86:/src/views-components/resource-properties-form/property-chip.tsx diff --git a/src/views-components/resource-properties-form/property-chip.tsx b/src/views-components/resource-properties-form/property-chip.tsx index c51a8d8e..24b5c0a9 100644 --- a/src/views-components/resource-properties-form/property-chip.tsx +++ b/src/views-components/resource-properties-form/property-chip.tsx @@ -2,15 +2,15 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { Chip } from '@material-ui/core'; import { connect } from 'react-redux'; -import { RootState } from '~/store/store'; -import * as CopyToClipboard from 'react-copy-to-clipboard'; -import { getVocabulary } from '~/store/vocabulary/vocabulary-selectors'; +import { RootState } from 'store/store'; +import CopyToClipboard from 'react-copy-to-clipboard'; +import { getVocabulary } from 'store/vocabulary/vocabulary-selectors'; import { Dispatch } from 'redux'; -import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; -import { getTagValueLabel, getTagKeyLabel, Vocabulary } from '~/models/vocabulary'; +import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; +import { getTagValueLabel, getTagKeyLabel, Vocabulary } from 'models/vocabulary'; interface PropertyChipComponentDataProps { propKey: string; @@ -50,3 +50,9 @@ export const PropertyChipComponent = connect(mapStateToProps, mapDispatchToProps ); } ); + +export const getPropertyChip = (k: string, v: string, handleDelete: any, className: string) => + ;