pl-fe: Avoid barrel imports
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
@ -3,7 +3,8 @@ import { FormattedMessage, defineMessages, useIntl } from 'react-intl';
|
||||
|
||||
import { setComposeToStatus } from 'pl-fe/actions/compose';
|
||||
import { cancelDraftStatus } from 'pl-fe/actions/draft-statuses';
|
||||
import { Button, HStack } from 'pl-fe/components/ui';
|
||||
import Button from 'pl-fe/components/ui/button';
|
||||
import HStack from 'pl-fe/components/ui/hstack';
|
||||
import { useAppDispatch } from 'pl-fe/hooks';
|
||||
import { useModalsStore, useSettingsStore } from 'pl-fe/stores';
|
||||
|
||||
|
||||
@ -6,7 +6,8 @@ import Account from 'pl-fe/components/account';
|
||||
import AttachmentThumbs from 'pl-fe/components/attachment-thumbs';
|
||||
import StatusContent from 'pl-fe/components/status-content';
|
||||
import StatusReplyMentions from 'pl-fe/components/status-reply-mentions';
|
||||
import { HStack, Stack } from 'pl-fe/components/ui';
|
||||
import HStack from 'pl-fe/components/ui/hstack';
|
||||
import Stack from 'pl-fe/components/ui/stack';
|
||||
import QuotedStatus from 'pl-fe/features/status/containers/quoted-status-container';
|
||||
import PollPreview from 'pl-fe/features/ui/components/poll-preview';
|
||||
import { useAppSelector } from 'pl-fe/hooks';
|
||||
|
||||
@ -3,7 +3,7 @@ import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
||||
|
||||
import { fetchDraftStatuses } from 'pl-fe/actions/draft-statuses';
|
||||
import ScrollableList from 'pl-fe/components/scrollable-list';
|
||||
import { Column } from 'pl-fe/components/ui';
|
||||
import Column from 'pl-fe/components/ui/column';
|
||||
import { useAppSelector, useAppDispatch } from 'pl-fe/hooks';
|
||||
|
||||
import DraftStatus from './components/draft-status';
|
||||
|
||||
Reference in New Issue
Block a user