Compare commits

...

3 commits

Author SHA1 Message Date
aaade55a58
merge: front
All checks were successful
Build and Deploy Go App / build (push) Successful in 17m58s
Build and Deploy Go App / deploy (push) Successful in 3m42s
2025-11-22 06:40:00 +03:00
6485563a95
fix: react imports 2025-11-22 06:37:39 +03:00
f1f7feffaa
feat: /titles page with search and sort functionality. Website header added 2025-11-22 05:45:54 +03:00
2 changed files with 2 additions and 3 deletions

View file

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

View file

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