mirror of
https://github.com/langgenius/dify.git
synced 2026-03-10 03:00:20 +08:00
13 lines
155 B
TypeScript
13 lines
155 B
TypeScript
'use client'
|
|
import React from 'react'
|
|
|
|
const Loading = () => {
|
|
return (
|
|
<div>
|
|
Loading...
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Loading)
|