aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/components/redirector.tsx
blob: a026930030f8c1cee5878195d935c947b2d864d8 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                           
import { constants } from 'ts/utils/constants';

interface RedirectorProps {
    location: string;
}

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