16 lines
470 B
TypeScript
16 lines
470 B
TypeScript
// Main Layout
|
|
export { MainLayout } from "./main-layout";
|
|
export type { MainLayoutProps } from "./main-layout";
|
|
|
|
// Auth Layout
|
|
export { AuthLayout } from "./auth-layout";
|
|
export type { AuthLayoutProps } from "./auth-layout";
|
|
|
|
// Feed Layout
|
|
export { FeedLayout } from "./feed-layout";
|
|
export type { FeedLayoutProps } from "./feed-layout";
|
|
|
|
// Manager Layout
|
|
export { ManagerLayout } from "./manager-layout";
|
|
export type { ManagerLayoutProps } from "./manager-layout";
|