aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/ts/components/redirecter.tsx
blob: 629522bbb254b91ff6e622c60306d46ee06736cf (plain) (tree)
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): void {
    window.location.href = constants.URL_ANGELLIST;
}