this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 10 lines 316 B view raw
1function ChapterSplitColumn({ blog, table }: { blog: React.ReactNode; table: React.ReactNode }) { 2 return ( 3 <div className="grid gap-8 xl:grid-cols-[minmax(0,0.9fr)_minmax(34rem,1.1fr)] xl:items-start"> 4 {blog} 5 <div className="min-w-0">{table}</div> 6 </div> 7 ); 8} 9 10export { ChapterSplitColumn };