mirror of
https://github.com/langgenius/dify.git
synced 2025-07-14 04:31:07 +00:00
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
|