mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 07:35:22 +08:00
5 lines
204 B
TypeScript
5 lines
204 B
TypeScript
import { ReactElement } from 'react'
|
|
export default function SponsorsWrapper({ children }: { children: ReactElement }) {
|
|
return <div className="flex w-full flex-wrap justify-between">{children}</div>
|
|
}
|