Files
SCM-Manager/scm-ui/ui-components/src/navigation/Section.tsx

21 lines
370 B
TypeScript
Raw Normal View History

import * as React from 'react';
type Props = {
label: string;
children?: React.Node;
};
class Section extends React.Component<Props> {
render() {
const { label, children } = this.props;
return (
<div>
<p className="menu-label">{label}</p>
<ul className="menu-list">{children}</ul>
</div>
);
}
}
export default Section;