oak-frontend-base/es/components/navi/index.d.ts

11 lines
213 B
TypeScript

import React from 'react';
type Props = {
items: Array<{
title: string;
href?: string;
}>;
title: string;
};
export default function Render(props: Props): React.JSX.Element;
export {};