Repository URL to install this package:
|
Version:
0.0.13 ▾
|
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: any;
context: CategoryListMetaSchema[];
readonly categories: any[];
render(): JSX.Element;
}