mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +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
21 lines
565 B
TypeScript
21 lines
565 B
TypeScript
import React, { ReactNode } from 'react'
|
|
|
|
import AppLayout from '@/components/layout/AppLayout'
|
|
|
|
interface LoopTalkLayoutProps {
|
|
children: ReactNode,
|
|
headerActions?: ReactNode,
|
|
backButton?: ReactNode,
|
|
}
|
|
|
|
const LoopTalkLayout: React.FC<LoopTalkLayoutProps> = ({ children, headerActions }) => {
|
|
// backButton is kept in interface for backward compatibility
|
|
// but not used with the new sidebar layout
|
|
return (
|
|
<AppLayout headerActions={headerActions}>
|
|
{children}
|
|
</AppLayout>
|
|
)
|
|
}
|
|
|
|
export default LoopTalkLayout
|