Export useFollowing hook
This commit is contained in:
parent
9c9c790a5f
commit
45493880cd
3 changed files with 3 additions and 4 deletions
|
@ -3,6 +3,7 @@
|
|||
export { useAccount } from './accounts/useAccount';
|
||||
export { useAccountLookup } from './accounts/useAccountLookup';
|
||||
export { useFollow } from './accounts/useFollow';
|
||||
export { useFollowing } from './accounts/useFollowing';
|
||||
export { useRelationships } from './accounts/useRelationships';
|
||||
export { usePatronUser } from './accounts/usePatronUser';
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
import React from 'react';
|
||||
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||
|
||||
import { useAccountLookup } from 'soapbox/api/hooks';
|
||||
import { useFollowing } from 'soapbox/api/hooks/accounts/useFollowing';
|
||||
import { useAccountLookup, useFollowing } from 'soapbox/api/hooks';
|
||||
import Account from 'soapbox/components/account';
|
||||
import MissingIndicator from 'soapbox/components/missing-indicator';
|
||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
import React from 'react';
|
||||
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||
|
||||
import { useAccountLookup } from 'soapbox/api/hooks';
|
||||
import { useFollowing } from 'soapbox/api/hooks/accounts/useFollowing';
|
||||
import { useAccountLookup, useFollowing } from 'soapbox/api/hooks';
|
||||
import Account from 'soapbox/components/account';
|
||||
import MissingIndicator from 'soapbox/components/missing-indicator';
|
||||
import ScrollableList from 'soapbox/components/scrollable-list';
|
||||
|
|
Loading…
Reference in a new issue