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 />;