Add typescript

(cherry picked from commit 910511dba03196f14bb238c8e15f060c12183c08)

Closes #2185
This commit is contained in:
Mark McDowall
2023-01-05 18:43:51 -08:00
committed by Bogdan
parent 3cab98e2c0
commit 3828492226
17 changed files with 738 additions and 36 deletions
+9 -1
View File
@@ -4,7 +4,15 @@ import Alert from 'Components/Alert';
import { kinds } from 'Helpers/Props';
import styles from './Form.css';
function Form({ children, validationErrors, validationWarnings, ...otherProps }) {
function Form(props) {
const {
children,
validationErrors,
validationWarnings,
// eslint-disable-next-line no-unused-vars
...otherProps
} = props;
return (
<div>
{