Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import React from 'react';
import { SectionLinkListProps, ListItemProps } from './typings';
declare class SectionLinkList extends React.PureComponent<SectionLinkListProps> {
static defaultProps: {
className: string;
list: {
label: string;
href: string;
}[];
title: string;
renderItem: (item: ListItemProps) => JSX.Element;
};
render(): JSX.Element;
}
export { SectionLinkList };
export default SectionLinkList;