balibabu
Feat: add PromptManagement page #3221 (#3650)
2b64e58
raw
history blame
167 Bytes
import { PropsWithChildren } from 'react';
export function Title({ children }: PropsWithChildren) {
return <span className="font-bold text-xl">{children}</span>;
}