feat: Add color display to Playground component

This commit is contained in:
yoosangwook 2024-09-02 18:17:21 +09:00
parent f46db8b750
commit dfea0fbc30

View File

@ -68,6 +68,7 @@ export default function Playground() {
<div>
<h1>React ColorPicker</h1>
<ColorPicker color={color} setColor={setColor} />
<div className="p-4">{color}</div>
</div>
</div>
</>