"use client"; import { TTCMD } from "@/components/ttcmd"; import { FC, use } from "react"; export const HomeClient: FC<{ body: Promise }> = ({ body }) => { const text = use(body); return ( ); };