mirror of
https://github.com/supabase/supabase.git
synced 2026-05-30 17:32:00 +08:00
6 lines
205 B
TypeScript
6 lines
205 B
TypeScript
import { ReactElement } from 'react'
|
|
|
|
export default function LinkCardsWrapper({ children }: { children: any }) {
|
|
return <div className="flex w-full flex-col lg:flex-row lg:flex-wrap">{children}</div>
|
|
}
|