@kalamazoo/profilecard
Version:
A React component to display a card with user information.
13 lines (12 loc) • 617 B
TypeScript
import ProfileCard from './components/ProfileCard';
import ProfileCardClient, { modifyResponse } from './api/ProfileCardClient';
import ProfileCardResourced from './components/ProfileCardResourced';
import ProfileCardTrigger, { DELAY_MS_SHOW, DELAY_MS_HIDE } from './components/ProfileCardTrigger';
import withOuterListeners from './components/withOuterListeners';
export * from './types';
export { ProfileCard };
export { ProfileCardTrigger };
export { ProfileCardClient as ProfileClient, modifyResponse };
export { withOuterListeners };
export { DELAY_MS_SHOW, DELAY_MS_HIDE };
export default ProfileCardResourced;