mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
enhancement: skip fetching to improve user experience when switching … (#2580)
This commit is contained in:
@@ -1,15 +1,17 @@
|
||||
import type { FC } from 'react'
|
||||
import classNames from 'classnames'
|
||||
|
||||
type LogoSiteProps = {
|
||||
className?: string
|
||||
}
|
||||
|
||||
const LogoSite: FC<LogoSiteProps> = ({
|
||||
className,
|
||||
}) => {
|
||||
return (
|
||||
<img
|
||||
src='/logo/logo-site.png'
|
||||
className={`block w-auto h-10 ${className}`}
|
||||
className={classNames('block w-auto h-10', className)}
|
||||
alt='logo'
|
||||
/>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user