aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/redirecter.tsx
blob: 477aecb77ad586b4d37fd696a472c7d284eb651b (plain) (blame)
1
2
3
4
5
6
7
8
9
import { constants } from 'ts/utils/constants';

interface RedirecterProps {
    location: string;
}

export function Redirecter(_props: RedirecterProps): void {
    window.location.href = constants.URL_ANGELLIST;
}