Skip to content

Instantly share code, notes, and snippets.

@sandygudie
Created January 21, 2021 23:33
Show Gist options
  • Save sandygudie/d1072de387e1fbaa5e98702d47f60300 to your computer and use it in GitHub Desktop.
Save sandygudie/d1072de387e1fbaa5e98702d47f60300 to your computer and use it in GitHub Desktop.
import React from "react";
const Colorbox = ({ color }) => {
let containerStyle = {
backgroundColor: color,
};
return <div className="colorbox" style={containerStyle}></div>;
};
export default Colorbox;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment