Compare commits

..

No commits in common. "aaade55a58d67da9f31e691180bd3127ebbfb6ca" and "c289e0a45e048edecb157ce07f241eb0691f6b89" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,5 @@
import React from "react"; import React, { useState } 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 { useState } from "react"; import React, { 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";