Refactored schema and added link model.

This commit is contained in:
Daniel
2023-02-14 03:39:13 +03:30
parent cefeb5e7a9
commit d19204f4c0
10 changed files with 101 additions and 79 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import { useEffect, useState } from "react";
interface Collections {
id: any;
id: number;
name: string;
role: string;
createdAt: string;
}
export default function Collections() {