mirror of
https://github.com/langgenius/dify.git
synced 2026-01-30 15:42:07 +08:00
13 lines
277 B
TypeScript
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)
|