blob: 048219ccf4371fb9417da50c15fb2633235e3e03 (
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 ? `wrapper--${modifier}` : '';
const classes = `${styles.wrapper} ${withModifier}`;
return (
<form onSubmit={submitHandler} className={classes}>
{children}
</form>
);
};
export default Form;
|