Created
May 5, 2019 13:57
-
-
Save zprima/64ff6c52b0660e40333b778525c56f42 to your computer and use it in GitHub Desktop.
medium_p7_c5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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