import { Button, Flex } from '@patternfly/react-core'; import type { FunctionComponent } from 'react'; interface QuickStartTileHeaderProps { /** Name for the header */ name: string; /** Id for the QuickStart */ quickStartId?: string; /** Callback for when the name of the QuickStart is clicked */ onSelect: (e: React.FormEvent | React.MouseEvent) => void; } const QuickStartTileHeader: FunctionComponent = ({ name, quickStartId, onSelect }) => ( ); export default QuickStartTileHeader;