pl-fe: remove some barrel imports/exports

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-10-20 00:56:12 +02:00
parent 787654c12a
commit bbbf6563c5
20 changed files with 48 additions and 20 deletions

View File

@ -2,7 +2,8 @@ import React, { createContext, useContext, useEffect, useMemo, useState } from '
import { useHistory, useParams } from 'react-router-dom';
import { toggleMainWindow } from 'pl-fe/actions/chats';
import { useAppDispatch, useSettings } from 'pl-fe/hooks';
import { useAppDispatch } from 'pl-fe/hooks/useAppDispatch';
import { useSettings } from 'pl-fe/hooks/useSettings';
import { useChat } from 'pl-fe/queries/chats';
import type { Chat } from 'pl-api';