import React from "react"; import { CopilotChatConfigurationProvider, CopilotKitProvider, } from "@copilotkit/react-core/v2"; interface CopilotStoryLayoutProps { children: React.ReactNode; threadId?: string; isModalDefaultOpen?: boolean; content?: React.ReactNode; } const defaultContent = ( <>

Project Dashboard

Toggle the assistant to draft updates, summarize discussions, and keep track of action items while you stay in context.

{Array.from({ length: 4 }).map((_, index) => (

Task {index + 1}

Placeholder content to illustrate how the assistant integrates alongside your existing workflow.

))}
); class MockAgent {} export const CopilotStoryLayout: React.FC = ({ children, threadId = "story-copilot-layout", isModalDefaultOpen = true, content, }) => (
{content ?? defaultContent}
{children}
); export default CopilotStoryLayout;