tabletop-commander/app/client.tsx
2024-08-18 12:34:43 -06:00

10 lines
256 B
TypeScript

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