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