Compare commits
2 Commits
4c628fee22
...
6a93cdbd94
| Author | SHA1 | Date | |
|---|---|---|---|
| 6a93cdbd94 | |||
| 12ec56f1ad |
@@ -1,12 +1,13 @@
|
|||||||
import { Typography } from 'antd';
|
import { Typography } from 'antd';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import DraggableTagList from '@/components/Draggable/DraggableTagList';
|
import DraggableTagList from '@/components/Draggable/DraggableTagList';
|
||||||
|
import type { SkuConfig } from '@/services/prod/prod-manager';
|
||||||
|
|
||||||
const { Title, Text } = Typography;
|
const { Title, Text } = Typography;
|
||||||
const SkuConfig: React.FC<{
|
const Sku: React.FC<{
|
||||||
value?: API.ProdPropSaveReqVO;
|
value?: SkuConfig;
|
||||||
onChange?: (value: API.ProdPropSaveReqVO) => void;
|
onChange?: (value: SkuConfig) => void;
|
||||||
}> = () => {
|
}> = (_props) => {
|
||||||
// const { value, onChange } = props;
|
// const { value, onChange } = props;
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@@ -20,4 +21,4 @@ const SkuConfig: React.FC<{
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default React.memo(SkuConfig);
|
export default React.memo(Sku);
|
||||||
|
|||||||
Reference in New Issue
Block a user