interface ChipProps { text: string; } const Chip = ({ text }: ChipProps) => { return (

{text}

); }; export default Chip;