fix: react imports

This commit is contained in:
nihonium 2025-11-22 06:37:39 +03:00
parent f1f7feffaa
commit 6485563a95
Signed by: nihonium
GPG key ID: 0251623741027CFC
2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,4 @@
import React, { useState } from "react"; import React from "react";
import { Squares2X2Icon, Bars3Icon } from "@heroicons/react/24/solid";
export type ListViewProps<T> = { export type ListViewProps<T> = {
items: T[]; items: T[];

View file

@ -1,4 +1,4 @@
import React, { useState } from "react"; import { useState } from "react";
import type { TitleSort } from "../../api"; import type { TitleSort } from "../../api";
import { ChevronDownIcon, ArrowUpIcon, ArrowDownIcon } from "@heroicons/react/24/solid"; import { ChevronDownIcon, ArrowUpIcon, ArrowDownIcon } from "@heroicons/react/24/solid";