mirror of
https://github.com/langgenius/dify.git
synced 2026-07-23 12:08:33 +08:00
10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
const Title = ({ title }: { title: string }) => {
|
|
return (
|
|
<div className="truncate system-md-semibold text-text-secondary" title={title}>
|
|
{title}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Title
|