MCPcopy Create free account
hub / github.com/Linen-dev/linen.dev / Table

Function Table

apps/web/ui/Table/index.tsx:10–26  ·  view source on GitHub ↗
({ monospaced, children }: Props)

Source from the content-addressed store, hash-verified

8}
9
10export default function Table({ monospaced, children }: Props) {
11 return (
12 <div className={styles.wrapper}>
13 <div className={styles.wrapper2}>
14 <div className={styles.wrapper3}>
15 <table
16 className={classNames(styles.table, {
17 [styles['font-mono']]: monospaced,
18 })}
19 >
20 {children}
21 </table>
22 </div>
23 </div>
24 </div>
25 );
26}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected