mirror of
https://github.com/langgenius/dify.git
synced 2026-01-06 07:01:25 -05:00
14 lines
189 B
TypeScript
14 lines
189 B
TypeScript
const Title = ({
|
|
title,
|
|
}: {
|
|
title: string
|
|
}) => {
|
|
return (
|
|
<div className="system-md-semibold truncate text-text-secondary">
|
|
{title}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Title
|