MCPcopy Create free account
hub / github.com/AsyncFuncAI/deepwiki-open / table

Function table

src/components/Markdown.tsx:86–94  ·  view source on GitHub ↗
({ children, ...props }: { children?: React.ReactNode })

Source from the content-addressed store, hash-verified

84 );
85 },
86 table({ children, ...props }: { children?: React.ReactNode }) {
87 return (
88 <div className="overflow-x-auto my-6 rounded-md">
89 <table className="min-w-full text-sm border-collapse" {...props}>
90 {children}
91 </table>
92 </div>
93 );
94 },
95 thead({ children, ...props }: { children?: React.ReactNode }) {
96 return <thead className="bg-gray-100 dark:bg-gray-800" {...props}>{children}</thead>;
97 },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected