mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-13 08:15:21 +02:00
* feat: create app sidebar and update layout * fix: fix loading errors * fix: fix stack auth hydration issue * fix: fix design for create-workflow * fix: fix service configuration page design * Add header for workflow detail * feat: fix workflow editor design * Fix css classes * Fix callback status parsing for Vobiz * Fix filter and remove gender service
20 lines
481 B
TypeScript
20 lines
481 B
TypeScript
import React, { ReactNode } from 'react'
|
|
|
|
interface WorkflowLayoutProps {
|
|
children: ReactNode,
|
|
headerActions?: ReactNode,
|
|
backButton?: ReactNode,
|
|
showFeaturesNav?: boolean,
|
|
}
|
|
|
|
const WorkflowLayout: React.FC<WorkflowLayoutProps> = ({ children }) => {
|
|
// This component is kept for backward compatibility
|
|
// AppLayout is now applied globally in the root layout
|
|
return (
|
|
<>
|
|
{children}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default WorkflowLayout
|