14 | T3 Turbo Next App Router Template 15 |
16 |Loading...
35 | )} 36 |14 | {Logged in as {data.user.name}} 15 |
16 | )} 17 | 23 |{post.content}
21 |Loading...
35 | )} 36 |
85 |
86 | ## References
87 |
88 | This template is modified from [create-t3-turbo](https://github.com/t3-oss/create-t3-turbo).
89 |
90 | The stack originates from [create-t3-app](https://github.com/t3-oss/create-t3-app).
91 |
92 | UI components are from [shadcn/ui](https://github.com/shadcn/ui)
93 |
--------------------------------------------------------------------------------
/packages/ui/src/table.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import * as React from "react";
4 |
5 | import { cn } from "@acme/utils";
6 |
7 | const Table = React.forwardRef<
8 | HTMLTableElement,
9 | React.HTMLAttributes