Skip to content

Instantly share code, notes, and snippets.

@zprima
Created May 5, 2019 13:57
Show Gist options
  • Save zprima/64ff6c52b0660e40333b778525c56f42 to your computer and use it in GitHub Desktop.
Save zprima/64ff6c52b0660e40333b778525c56f42 to your computer and use it in GitHub Desktop.
medium_p7_c5
import React from "react";
import { PainterContext } from '../contexts/PainterContext';
function ColorPreview(props) {
const {color} = React.useContext(PainterContext);
return (
<div className="colorPreview">Color selected: {color.name}</div>
);
}
export default ColorPreview;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment