pl-fe: Avoid barrel imports

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-10-19 14:34:03 +02:00
parent 398fcd043b
commit 525088ca2e
281 changed files with 625 additions and 296 deletions

View File

@ -2,7 +2,7 @@ import React from 'react';
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
import { joinEvent, leaveEvent } from 'pl-fe/actions/events';
import { Button } from 'pl-fe/components/ui';
import Button from 'pl-fe/components/ui/button';
import { useAppDispatch, useAppSelector } from 'pl-fe/hooks';
import { useModalsStore } from 'pl-fe/stores';

View File

@ -2,7 +2,7 @@ import React from 'react';
import { FormattedDate } from 'react-intl';
import Icon from 'pl-fe/components/icon';
import { HStack } from 'pl-fe/components/ui';
import HStack from 'pl-fe/components/ui/hstack';
import type { Status } from 'pl-fe/normalizers';