Move RecommendedChannelsList to shared components directory.
This commit is contained in:
parent
33998743d6
commit
6de95c78a1
|
@ -8,3 +8,4 @@ export { PluginCardBody, SmartPluginCardBody } from './PluginCardBody';
|
|||
export { CardHeaderTitle } from './CardHeaderTitle';
|
||||
export { CardHeaderDescription } from './CardHeaderDescription';
|
||||
export { CenteredSpinner } from './CenteredSpinner';
|
||||
export { RecommendedChannelsList } from './RecommendedChannelsList';
|
||||
|
|
|
@ -12,12 +12,12 @@ import {
|
|||
CardHeaderTitle,
|
||||
CardHeaderDescription,
|
||||
CenteredSpinner,
|
||||
RecommendedChannelsList,
|
||||
} from '~/marketing/components';
|
||||
import { useChannels } from './useChannels';
|
||||
import './Channels.scss';
|
||||
import { InstalledChannelCardBody } from './InstalledChannelCardBody';
|
||||
import { CollapsibleRecommendedChannels } from './CollapsibleRecommendedChannels';
|
||||
import { RecommendedChannelsList } from './RecommendedChannelsList';
|
||||
|
||||
export const Channels = () => {
|
||||
const {
|
||||
|
|
|
@ -10,7 +10,7 @@ import { chevronUp, chevronDown } from '@wordpress/icons';
|
|||
* Internal dependencies
|
||||
*/
|
||||
import { RecommendedChannel } from '~/marketing/types';
|
||||
import { RecommendedChannelsList } from './RecommendedChannelsList';
|
||||
import { RecommendedChannelsList } from '~/marketing/components';
|
||||
import './Channels.scss';
|
||||
|
||||
type RecommendedChannelsType = {
|
||||
|
|
Loading…
Reference in New Issue