Files
dify-conversation/app/chat/@content/page.tsx
T
2023-06-13 20:59:07 +08:00

7 lines
157 B
TypeScript

const Content = async () => {
await new Promise((resolve) => setTimeout(resolve, 1000))
return <div className=''>Content</div>
}
export default Content