Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import React from 'react';
import { CategoryListMetaSchema } from '@skava/packages/core/categories';
import { MenuProps } from './typings';
/**
 * @todo split out the inner list wrapping...
 * @todo simplify dom? render top level on left
 *       then find active...
 */
export default class MenuWidget extends React.Component<MenuProps> {
    static displayName: string;
    static contextType: React.Context<CategoryListMetaSchema[]>;
    context: CategoryListMetaSchema[];
    readonly categories: CategoryListMetaSchema[];
    render(): JSX.Element;
}