aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/pages/instant/instant.tsx
blob: 0ecf39254b9c6c94f1d9c6bddb650cbd462bd38c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import * as React from 'react';

import { Dispatcher } from 'ts/redux/dispatcher';
import { Translate } from 'ts/utils/translate';

export interface InstantProps {
    location: Location;
    translate: Translate;
    dispatcher: Dispatcher;
}

export const Instant: React.StatelessComponent<InstantProps> = () => <div />;