refactor: move sortable-item into common

This commit is contained in:
semmy 2022-02-07 11:33:04 +08:00
parent 345c802d2b
commit 8a2ab9f86b
6 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import React from 'react';
import { useDesignable } from '../..';
import { SortableItem } from '../sortable-item';
import { SortableItem } from '../../common';
export const BlockItem: React.FC<any> = (props) => {
const { DesignableBar } = useDesignable();

View File

@ -24,7 +24,6 @@ export * from './radio';
export * from './record-picker';
export * from './row-selection';
export * from './select';
export * from './sortable-item';
export * from './tabs';
export * from './time-picker';
export * from './tree-select';

View File

@ -1 +1,2 @@
export * from './dnd-context';
export * from './sortable-item';