import React, { useState } from 'react' import { getImgURL } from '@/utils/image' import Preview from './Preview' import Form from './Form' import Styles from './style.less' const noop = x => x; export default (props) => { const { target, rights, onCancel = noop } = props const { id: targetId, type: targetType } = target const [posterImg, setPosterImg] = useState() return (
) }