yippe 2
This commit is contained in:
@@ -1,12 +1,5 @@
|
||||
"use client"
|
||||
|
||||
import {
|
||||
ColumnDef,
|
||||
flexRender,
|
||||
getCoreRowModel,
|
||||
useReactTable,
|
||||
} from "@tanstack/react-table"
|
||||
|
||||
import {
|
||||
Table,
|
||||
TableBody,
|
||||
@@ -16,12 +9,7 @@ import {
|
||||
TableRow,
|
||||
} from "@/components/ui/table"
|
||||
|
||||
export function MedicationTable(medications) {
|
||||
|
||||
|
||||
if (!userData) return <div>Loading...</div>;
|
||||
|
||||
console.log(userData);
|
||||
export function MedicationTable({medications}) {
|
||||
|
||||
return (
|
||||
<div className="rounded-md border">
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
"use client"
|
||||
|
||||
import { useState, useEffect } from 'react';
|
||||
import axios from 'axios';
|
||||
import { useUser } from '@clerk/nextjs';
|
||||
@@ -24,7 +25,7 @@ export default function Dashboard() {
|
||||
<h1 className="text-3xl font-semibold mb-6">Dashboard</h1>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||
<IntenseChart />
|
||||
<MedicationTable medications={[]} />
|
||||
<MedicationTable medications={userData ? userData.medications : []} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user