mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
17 lines
537 B
TypeScript
17 lines
537 B
TypeScript
// ========================================
|
|
// Layout Components Barrel Export
|
|
// ========================================
|
|
// Re-export all layout components for convenient imports
|
|
|
|
export { AppShell } from './AppShell';
|
|
export type { AppShellProps } from './AppShell';
|
|
|
|
export { Header } from './Header';
|
|
export type { HeaderProps } from './Header';
|
|
|
|
export { Sidebar } from './Sidebar';
|
|
export type { SidebarProps } from './Sidebar';
|
|
|
|
export { MainContent } from './MainContent';
|
|
export type { MainContentProps } from './MainContent';
|