Refactor: Break down single table component into multiple modular components

This commit is contained in:
2024-12-30 13:16:13 +01:00
parent 8c9688017b
commit 95380493cb
33 changed files with 1562 additions and 6642 deletions
+5
View File
@@ -0,0 +1,5 @@
import PocketBase from "pocketbase";
const pb = new PocketBase(process.env.NEXT_PUBLIC_POCKETBASE_URL);
export default pb;
+3 -3
View File
@@ -1,6 +1,6 @@
import { clsx, type ClassValue } from "clsx"
import { twMerge } from "tailwind-merge"
import { clsx, type ClassValue } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}