import * as React from 'react'; import { FormEvent } from 'react'; import Button from '../shared/Button'; interface Props { body: string; parentId: number; handleChange(e: FormEvent): void; handleSubmit(body: string, parentId: number): void; } const NewComment = ({ body, parentId, handleChange, handleSubmit, }: Props) => (