mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 16:04:27 +08:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import { Tabs } from '@supabase/ui'
|
|
|
|
const TabWrapper = (props) => {
|
|
console.log('Tab props: ', props)
|
|
const { children, ...otherProps } = props
|
|
|
|
return <Tabs {...otherProps}>{props.children}</Tabs>
|
|
}
|
|
|
|
export default TabWrapper
|