Fix format

This commit is contained in:
Steve Faulkner
2021-01-03 23:55:58 -06:00
parent 684cbfe4a0
commit 1238d30f95

View File

@@ -6,7 +6,8 @@ interface Props {
} }
export const SignInButton: React.FunctionComponent<Props> = ({ login }: Props) => { export const SignInButton: React.FunctionComponent<Props> = ({ login }: Props) => {
return <DefaultButton return (
<DefaultButton
className="mecontrolSigninButton" className="mecontrolSigninButton"
text="Sign In" text="Sign In"
onClick={login} onClick={login}
@@ -14,5 +15,7 @@ export const SignInButton: React.FunctionComponent<Props> = ({ login }: Props) =
rootHovered: { backgroundColor: "#393939", color: "#fff" }, rootHovered: { backgroundColor: "#393939", color: "#fff" },
rootFocused: { backgroundColor: "#393939", color: "#fff" }, rootFocused: { backgroundColor: "#393939", color: "#fff" },
rootPressed: { backgroundColor: "#393939", color: "#fff" } rootPressed: { backgroundColor: "#393939", color: "#fff" }
}} />; }}
/>
);
}; };