import React from 'react' import { Flex, Layout, Row, Col } from 'antd'; import Navigation from '@/components/layout/Navigation' type AltLayoutProps = { header?: React.ReactNode, children?: React.ReactNode, footer?: React.ReactNode } const AltLayout: React.FC = ({ header = <>, children = <>, footer = }:AltLayoutProps) => { return ( {header} {/* Chat messages */}
{children}
{footer}
) } export default AltLayout