Files
imphnen-frontend-service/apps/dimentorin/src/app/layout.tsx
T

10 lines
178 B
TypeScript
Raw Normal View History

2025-07-28 23:26:22 +07:00
import { Outlet, ScrollRestoration } from "react-router-dom";
export default function RootLayout() {
return (
<>
<Outlet />
<ScrollRestoration />
</>
)
}