import React, { HTMLAttributes } from 'react'; interface Props extends HTMLAttributes { active?: boolean; onClick?: any; text: string; } export const DropdownTextItem: React.FC = props => { const { text, onClick, ...restProps } = props; return (
{text}
); };