accounts-frontend/packages/app/components/accounts/index.ts

6 lines
194 B
TypeScript
Raw Normal View History

import { State, Account as AccountType } from './reducer';
2019-12-07 16:58:52 +05:30
export { default as AccountSwitcher } from './AccountSwitcher';
export type AccountsState = State;
export type Account = AccountType;