mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 21:14:30 +08:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { ReactElement } from 'react'
|
|
import { Tabs } from '@supabase/ui'
|
|
export default function TabPanel(props) {
|
|
console.log({ props })
|
|
return (
|
|
<Tabs.Panel id={props.id} label={props.label}>
|
|
{props.children}
|
|
</Tabs.Panel>
|
|
)
|
|
}
|