Folder and aliases refactor

This commit is contained in:
2021-07-16 02:15:41 +05:00
parent a41b26371c
commit 9603c00db2
18 changed files with 27 additions and 33 deletions

View File

@ -1,7 +1,7 @@
import { IBook } from "@type/book";
import { isArrOfStr } from "@type/utils";
import { validateResponse } from "../api";
import { BookItem } from "../Bookshelf/BookItem";
import { IBook } from "~/types/book";
import { isArrOfStr } from "~/types/utils";
import { validateResponse } from "~/api";
import { BookItem } from "~/pages/Bookshelf/BookItem";
const readBookList = <T>(
cb: (bookList: string[]) => T,