@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
14 lines (13 loc) • 442 B
TypeScript
/**
* TableofContents module.
* @module @massds/mayflower-react/TableofContents
* @requires module:@massds/mayflower-assets/scss/03-organisms/table-of-contents-hierarchy
*/
import React from 'react';
export interface TableofContentsProps {
/** The heading text */
heading?: React.ReactElement;
children?: React.ReactNode;
}
declare const TableofContents: (props: TableofContentsProps) => any;
export default TableofContents;