import PostTextField from '@/components/posts/PostTextField' import type { FC } from 'react' type Props = { value: string onChange: (value: string) => void errors?: string[] disabled?: boolean } const PostDurationField: FC = ( { value, onChange, errors, disabled }, ) => ( ) export default PostDurationField