Repository URL to install this package:
|
Version:
0.0.15 ▾
|
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;
}