mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
6 lines
199 B
TypeScript
6 lines
199 B
TypeScript
import DashboardLayout from '../dashboard/layout';
|
|
|
|
export default function TariffRatesLayout({ children }: { children: React.ReactNode }) {
|
|
return <DashboardLayout>{children}</DashboardLayout>;
|
|
}
|