You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gcgj-dify-1.7.0/web/app/components/datasets/formatted-text/flavours/formatted.tsx

8 lines
227 B
TypeScript

import type { FC, PropsWithChildren } from 'react'
export type FormattedTextProps = PropsWithChildren
export const FormattedText: FC<FormattedTextProps> = (props) => {
return <p className='leading-7'>{props.children}</p>
}