'use client'; import * as React from 'react'; import { useConfigProvider } from '../components/ConfigProvider/ConfigProviderContext'; import type { HasPlatform } from '../types'; export function withPlatform( Component: React.ComponentType, ): React.FC> { function WithPlatform(props: Omit) { const { platform } = useConfigProvider(); return ; } return WithPlatform; }