Skip to content

Instantly share code, notes, and snippets.

@irounik
irounik / Chip.js
Created May 1, 2025 05:10
A simple Chip Input
import React from 'react';
import './style.css';
export default function Chip({ chip, onDelete }) {
return (
<div class="chip-bg">
<span class="chip-message">{chip.message}</span>
<button class="chip-delete" onClick={() => onDelete(chip.id)}>
X
</button>