9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
export interface DashboardLayoutProps {
|
|
children: ReactNode;
|
|
lang: "en" | "tr";
|
|
activePage: string;
|
|
siteUrls: string[];
|
|
}
|