mirror of
https://github.com/supabase/supabase.git
synced 2026-07-01 23:54:23 +08:00
9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import { Tabs } from 'ui'
|
|
export default function TabPanel(props: { id: string; label: string | undefined; children: any }) {
|
|
return (
|
|
<Tabs.Panel id={props.id} label={props.label}>
|
|
{props.children}
|
|
</Tabs.Panel>
|
|
)
|
|
}
|