Files
ragflow/web/src/layouts/next.tsx
chanx a8a060676a Refactor: UmiJs -> Vite (#12410)
### What problem does this PR solve?

Refactor: UmiJs -> Vite+React

### Type of change

- [x] Refactoring

---------

Co-authored-by: Liu An <asiro@qq.com>
2026-01-04 19:14:20 +08:00

12 lines
227 B
TypeScript

import { Outlet } from 'react-router';
import { Header } from './next-header';
export default function NextLayout() {
return (
<main className="h-full flex flex-col">
<Header />
<Outlet />
</main>
);
}