eslint: use semicolon TypeScript delimeter

This commit is contained in:
Alex Gleason
2023-10-02 13:54:02 -05:00
parent 702124fb79
commit 645ce60a5f
479 changed files with 1928 additions and 1938 deletions

View File

@ -2,11 +2,11 @@ import React from 'react';
interface IForm {
/** Form submission event handler. */
onSubmit?: (event: React.FormEvent) => void
onSubmit?: (event: React.FormEvent) => void;
/** Class name override for the <form> element. */
className?: string
className?: string;
/** Elements to display within the Form. */
children: React.ReactNode
children: React.ReactNode;
}
/** Form element with custom styles. */