Opt into analytics by default during the beta

This commit is contained in:
Robin Townsend
2023-03-13 18:40:16 -04:00
parent 7aa902853a
commit 971eca59ff
13 changed files with 76 additions and 56 deletions

View File

@@ -15,14 +15,14 @@ limitations under the License.
*/
import classNames from "classnames";
import React, { FormEventHandler, forwardRef } from "react";
import React, { FormEventHandler, forwardRef, ReactNode } from "react";
import styles from "./Form.module.css";
interface FormProps {
className: string;
onSubmit: FormEventHandler<HTMLFormElement>;
children: JSX.Element[];
children: ReactNode[];
}
export const Form = forwardRef<HTMLFormElement, FormProps>(