10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
import type { BaseLayoutProps } from "fumadocs-ui/layouts/shared";
|
|
|
|
export function baseOptions(): BaseLayoutProps {
|
|
return {
|
|
nav: {
|
|
title: "React Router",
|
|
},
|
|
};
|
|
}
|