import * as React from 'react'; import I18n from 'i18n-js'; 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;