Added enter again on invoice modal.

This commit is contained in:
Patrick Fic
2020-04-14 16:17:13 -07:00
parent ad87cb31ef
commit 91af10eef2
9 changed files with 127 additions and 46 deletions

View File

@@ -2,5 +2,16 @@ import React from "react";
import SignIn from "../../components/sign-in-form/sign-in-form.component";
export default () => {
return <SignIn />;
return (
<div
style={{
display: "flex",
justifyContent: "center",
alignItems: "middle",
padding: "4em",
}}
>
<SignIn />
</div>
);
};