Created
May 5, 2019 13:48
-
-
Save zprima/57b060b963ce8115153348be591d4cb4 to your computer and use it in GitHub Desktop.
medium_p7_c2
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"; | |
// define list of colors | |
export const colors = [ | |
{ name: "white", hex: "#fff" }, | |
{ name: "black", hex: "#000" }, | |
{ name: "red", hex: "#ff0000" }, | |
{ name: "green", hex: "#00ff00" }, | |
{ name: "blue", hex: "#0000ff" }, | |
{ name: "pink", hex: "#ffa6c9" }, | |
{ name: "yellow", hex: "#ffff00" }, | |
{ name: "brown", hex: "#a52a2a" }, | |
{ name: "light blue", hex: "#add8e6" }, | |
{ name: "purple", hex: "#9370db" } | |
]; | |
// create painter context | |
// make the first color its default value | |
export const PainterContext = React.createContext(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment