+
+
{{ pageTitle }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/bio/test/bga/mock.ts b/src/views/bio/test/bga/mock.ts
new file mode 100644
index 0000000..0a7d9b2
--- /dev/null
+++ b/src/views/bio/test/bga/mock.ts
@@ -0,0 +1,14 @@
+// Mock data for BGA test page
+export interface BgaDataItem {
+ id: number
+ sample: string
+ value: number
+ status: string
+}
+
+export const bgaDataList: BgaDataItem[] = [
+ { id: 1, sample: 'Sample A', value: 42, status: 'OK' },
+ { id: 2, sample: 'Sample B', value: 37, status: 'OK' },
+ { id: 3, sample: 'Sample C', value: 50, status: 'Warning' },
+ { id: 4, sample: 'Sample D', value: 28, status: 'Fail' },
+]
\ No newline at end of file