- Added new dependencies for drag-and-drop functionality with @dnd-kit packages. - Updated package versions for @tanstack/react-virtual and date-fns. - Refactored AppShell component to utilize AppSidebar and SiteHeader for improved layout. - Enhanced Frame component with new theming capabilities and improved structure. - Introduced filtering capabilities in Agents and Lists pages with new UI elements. - Added new utility functions for authentication claims management. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
336 B
TypeScript
16 lines
336 B
TypeScript
import type { ReactNode } from 'react'
|
|
import { cn } from '@evofw/ui/lib/utils'
|
|
|
|
interface PageShellProps {
|
|
children: ReactNode
|
|
className?: string
|
|
}
|
|
|
|
export function PageShell({ children, className }: PageShellProps) {
|
|
return (
|
|
<div className={cn('flex flex-col gap-4 md:gap-6', className)}>
|
|
{children}
|
|
</div>
|
|
)
|
|
}
|