mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
// @ts-nocheck
|
|
// This file is generated by Umi automatically
|
|
// DO NOT CHANGE IT MANUALLY!
|
|
import React from 'react';
|
|
import { Outlet, useOutletContext } from 'umi';
|
|
export default function EmptyRoute() {
|
|
const context = useOutletContext();
|
|
return <Outlet context={context} />;
|
|
}
|