Validation; reformat source code

This commit is contained in:
2025-05-15 14:04:16 -05:00
parent 062b38514b
commit 6469840f0a
37 changed files with 2006 additions and 2438 deletions

View File

@@ -4,11 +4,11 @@
* Released under the modified BSD license. See COPYING.md for more details.
*/
import {ReactNode} from 'react';
import { ReactNode } from "react";
import styles from "./Form.module.css";
function Form({children}: { children: ReactNode }) {
return <div className={styles.Form}>{children}</div>;
function Form({ children }: { children: ReactNode }) {
return <div className={styles.Form}>{children}</div>;
}
export default Form;
export default Form;