lbry-desktop/ui/component/common/form-components/form.jsx
2019-11-11 13:27:29 -05:00

29 lines
509 B
JavaScript

// @flow
import * as React from 'react';
type Props = {
children: React.Node,
onSubmit: any => any,
};
export class Form extends React.PureComponent<Props> {
render() {
const { children, onSubmit, ...otherProps } = this.props;
return (
<form
noValidate
className="form"
onSubmit={event => {
event.preventDefault();
onSubmit(event);
}}
{...otherProps}
>
{children}
</form>
);
}
}
export default Form;