fixes + improvements

This commit is contained in:
Daniel
2023-05-27 20:23:02 +03:30
parent 36778810c5
commit 632548e54a
4 changed files with 19 additions and 19 deletions
+4 -5
View File
@@ -21,13 +21,12 @@ import Link from "next/link";
import Dropdown from "../Dropdown";
import Modal from "../Modal";
export default function ({
link,
count,
}: {
type Props = {
link: LinkIncludingCollectionAndTags;
count: number;
}) {
};
export default function ({ link, count }: Props) {
const [expandDropdown, setExpandDropdown] = useState(false);
const [editModal, setEditModal] = useState(false);
+4 -5
View File
@@ -21,13 +21,12 @@ import Modal from "./Modal";
import EditLink from "./Modal/EditLink";
import Link from "next/link";
export default function ({
link,
count,
}: {
type Props = {
link: LinkIncludingCollectionAndTags;
count: number;
}) {
};
export default function ({ link, count }: Props) {
const [expandDropdown, setExpandDropdown] = useState(false);
const [editModal, setEditModal] = useState(false);