Scroll to top after page change/click on submit button

This commit is contained in:
Philipp Czora
2019-02-15 15:32:54 +01:00
parent 733e719194
commit 00b17575dc
3 changed files with 42 additions and 5 deletions

View File

@@ -4,7 +4,16 @@ import Button, { type ButtonProps } from "./Button";
class SubmitButton extends React.Component<ButtonProps> {
render() {
return <Button type="submit" color="primary" {...this.props} />;
return (
<Button
type="submit"
color="primary"
{...this.props}
action={() => {
window.scrollTo(0, 0);
}}
/>
);
}
}