dify/web/app/components/explore/banner.tsx
2025-10-11 15:07:03 +08:00

13 lines
277 B
TypeScript

'use client'
import type { FC } from 'react'
import React from 'react'
const Banner: FC = () => {
return (
<div className='h-[184px] rounded-2xl bg-components-panel-on-panel-item-bg shadow-md'>
Banner placeholder
</div>
)
}
export default React.memo(Banner)