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

7 lines
144 B
TypeScript

const Sidebar = async () => {
await new Promise((resolve) => setTimeout(resolve, 2000))
return <div>Sidebar</div>
}
export default Sidebar