dograh/ui/src/app/workflow/WorkflowLayout.tsx

21 lines
481 B
TypeScript
Raw Normal View History

2025-09-09 14:37:32 +05:30
import React, { ReactNode } from 'react'
interface WorkflowLayoutProps {
children: ReactNode,
headerActions?: ReactNode,
backButton?: ReactNode,
showFeaturesNav?: boolean,
2025-09-09 14:37:32 +05:30
}
const WorkflowLayout: React.FC<WorkflowLayoutProps> = ({ children }) => {
// This component is kept for backward compatibility
// AppLayout is now applied globally in the root layout
2025-09-09 14:37:32 +05:30
return (
<>
{children}
</>
)
}
export default WorkflowLayout