9 lines
285 B
TypeScript
9 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} />;
|
|
}
|