MCPcopy Create free account
hub / github.com/Linen-dev/linen.dev / ChatLayout

Function ChatLayout

apps/web/ui/ChatLayout/index.tsx:12–21  ·  view source on GitHub ↗
({ className, content, footer, onDrop }: Props)

Source from the content-addressed store, hash-verified

10}
11
12function ChatLayout({ className, content, footer, onDrop }: Props) {
13 return (
14 <div className={classNames(styles.layout, className)} onDrop={onDrop}>
15 {content}
16 <div id="chat-layout-footer" className={styles.footer}>
17 {footer}
18 </div>
19 </div>
20 );
21}
22
23export default ChatLayout;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected