import type { PropsWithChildren } from 'react' import React from 'react' export interface ExperimentProps { key: string weight: number } export const Experiment: React.FC> = (props) => { const { children } = props return <>{children} }