mirror of
https://github.com/langgenius/dify-conversation.git
synced 2026-07-01 18:25:52 -04:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
const Content = async () => {
|
|
await new Promise((resolve) => setTimeout(resolve, 1000))
|
|
return <div className=''>Content</div>
|
|
}
|
|
|
|
export default Content
|