import { type FC } from 'react' // import { useTranslation } from 'react-i18next' import UploadBox from '../../../components/UploadBox' type Props = { onChangeVideoFile: (file: File) => void, onChangeCoverFile: (file: File) => void } const CreateLearningSidebar: FC = (props: Props) => { return (
کاور آموزش
props.onChangeCoverFile(file[0])} />
ویدیو
props.onChangeVideoFile(file[0])} />
) } export default CreateLearningSidebar