aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/redirecter.tsx
blob: 07432a926174705904f911414d3a900f45395139 (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;
}