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