diff --git a/src/Platform/Hosted/Components/SignInButton.tsx b/src/Platform/Hosted/Components/SignInButton.tsx index 140332845..c13c8de3c 100644 --- a/src/Platform/Hosted/Components/SignInButton.tsx +++ b/src/Platform/Hosted/Components/SignInButton.tsx @@ -2,17 +2,20 @@ import { DefaultButton } from "office-ui-fabric-react"; import * as React from "react"; interface Props { - login: () => void; - } + login: () => void; +} export const SignInButton: React.FunctionComponent = ({ login }: Props) => { - return ; + return ( + + ); };