@danilandreev/material-docs
Version:
material-docs - react framework for easy creating documentation site in material design style.
23 lines (19 loc) • 554 B
TypeScript
/*
* Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev
* Copyright (C) 2020.
*/
/// <reference types="react" />
export const displayName: string;
export interface NavigationListProps {
/**
* keys - list with information about tags and labels in page.
* @type: array
*/
keys: any[];
}
/**
* NavigationList - system component, used to display tags in page. Used inside DocsPage.
* @param props
* @constructor
*/
export default function NavigationList(props: NavigationListProps): JSX.Element;