import React, { FC } from 'react'; const SignIn: FC = () => { const loginUrl = `login?redirect=${encodeURIComponent(window.location.pathname)}`; return (
  • Sign In
); }; export default SignIn;