blob: 74a4efbd00b66973d8b65f52ec2e8ab99b8caa95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import { ReactNode } from 'react';
import styles from './Form.module.scss';
const Form = ({
children,
submitHandler,
modifier = '',
}: {
children: ReactNode;
submitHandler: any;
modifier?: string;
}) => {
const withModifier = modifier ? styles[`wrapper--${modifier}`] : '';
const classes = `${styles.wrapper} ${withModifier}`;
return (
<form onSubmit={submitHandler} className={classes}>
{children}
</form>
);
};
export default Form;
|