File size: 276 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import 'calypso/state/concierge/init';
import { AppState } from 'calypso/types';
export interface NextAppointment {
id: number;
siteId: number;
scheduleId: number;
}
export default ( state: AppState ): NextAppointment | null =>
state.concierge?.nextAppointment ?? null;
|