mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-05 06:50:43 +08:00
20 lines
378 B
TypeScript
20 lines
378 B
TypeScript
import type { FC } from 'react'
|
|
|
|
// import {
|
|
// RiLoader2Line,
|
|
// RiStopCircleFill,
|
|
// } from '@remixicon/react'
|
|
import { useStore } from '../store'
|
|
import cn from '@/utils/classnames'
|
|
|
|
const Panel: FC = () => {
|
|
const workflowCanvasHeight = useStore(s => s.workflowCanvasHeight)
|
|
|
|
return (
|
|
<div className={cn('relative pb-1')}>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Panel
|