accounts-frontend/packages/app/components/accounts/index.ts
2019-12-25 12:54:05 +02:00

6 lines
194 B
TypeScript

import { State, Account as AccountType } from './reducer';
export { default as AccountSwitcher } from './AccountSwitcher';
export type AccountsState = State;
export type Account = AccountType;