@alauda/doom
Version:
Doctor Doom making docs.
8 lines (7 loc) • 464 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { Markdown, useTranslation } from '@alauda/doom/runtime';
import classes from '@alauda/doom/styles/chat.module.scss';
export const ThinkingProcess = ({ children }) => {
const t = useTranslation();
return (_jsxs("div", { children: [_jsx("div", { children: t('thinking_process') }), _jsx("div", { className: classes.markdown, children: _jsx(Markdown, { children: children }) })] }));
};