import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/JumpLinks/jump-links'; export interface JumpLinksListProps extends React.HTMLProps { /** Text to be rendered inside span */ children?: React.ReactNode; /** Classname to add to ul. */ className?: string; } export const JumpLinksList: React.FunctionComponent = ({ children, className, ...props }: JumpLinksListProps) => ( ); JumpLinksList.displayName = 'JumpLinksList';