6 lines
194 B
TypeScript
Raw Normal View History

import { State, Account as AccountType } from './reducer';
2019-12-07 13:28:52 +02:00
export { default as AccountSwitcher } from './AccountSwitcher';
export type AccountsState = State;
export type Account = AccountType;