mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-28 11:48:10 +08:00
### What problem does this PR solve? Refactor: UmiJs -> Vite+React ### Type of change - [x] Refactoring --------- Co-authored-by: Liu An <asiro@qq.com>
12 lines
227 B
TypeScript
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>
|
|
);
|
|
}
|