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

interface RedirecterProps {
    location: string;
}

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