mirror of
https://github.com/langgenius/dify.git
synced 2026-03-21 02:20:08 +08:00
Co-authored-by: AkaraChen <akarachen@outlook.com> Co-authored-by: Yi <yxiaoisme@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: kurokobo <kuro664@gmail.com> Co-authored-by: Hiroshi Fujita <fujita-h@users.noreply.github.com>
14 lines
189 B
TypeScript
14 lines
189 B
TypeScript
const Title = ({
|
|
title,
|
|
}: {
|
|
title: string
|
|
}) => {
|
|
return (
|
|
<div className='truncate text-text-secondary system-md-semibold'>
|
|
{title}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Title
|