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

11 lines
180 B
TypeScript
Raw Normal View History

2025-11-24 12:51:41 +07:00
import { Outlet, ScrollRestoration } from 'react-router-dom';
export default function RootLayout() {
return (
<>
<Outlet />
<ScrollRestoration />
</>
);
}