import { ClientOnly } from '@tamagui/use-did-finish-ssr' import React from 'react' import { ComponentContext } from '../contexts/ComponentContext' import type { AnimationDriver } from '../types' interface ConfigurationProps { animationDriver?: AnimationDriver | null disableSSR?: boolean children: React.ReactNode } export const Configuration = (props: ConfigurationProps) => { const current = React.useContext(ComponentContext) return ( ) }