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

@ -4,7 +4,7 @@ import { useHistory } from 'react-router-dom';
import { userTouching } from 'pl-fe/is-mobile';
import { Counter, Icon, Toggle } from '../ui';
import { Counter, Icon, Toggle } from 'pl-fe/components/ui';
interface MenuItem {
action?: React.EventHandler<React.KeyboardEvent | React.MouseEvent>;

View File

@ -7,7 +7,7 @@ import ReactSwipeableViews from 'react-swipeable-views';
import { userTouching } from 'pl-fe/is-mobile';
import { useUiStore, useModalsStore } from 'pl-fe/stores';
import { HStack, IconButton, Portal } from '../ui';
import { HStack, IconButton, Portal } from 'pl-fe/components/ui';
import DropdownMenuItem, { MenuItem } from './dropdown-menu-item';