import * as React from 'react'; import { FormEvent } from 'react'; import IPostStatus from '../../interfaces/IPostStatus'; const NO_POST_STATUS_VALUE = 'none'; interface Props { postStatuses: Array; selectedPostStatusId: number; handleChange( newPostStatusId: number, ): void; } const PostStatusSelect = ({ postStatuses, selectedPostStatusId, handleChange, }: Props) => ( ); export default PostStatusSelect;