import { TTCMD } from "@/components/ttcmd"; import { readFile } from "fs/promises"; import Error from "next/error"; import { Suspense } from "react"; export default async function Help({ params, }: { params: { article: string }; }) { const body = readFile( "./md/help articles/" + decodeURIComponent(params.article), "utf-8", ); return ( <>

Help

How to use TTCMD

); }