import { FC, ReactNode } from 'react'; export function OptionsTable({ children }) { return (
{children}
); } export function OptionTitle({ children }) { return (
{children}
); } export function OptionDescription({ children }) { return
{children}
; }