Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function ColorBox (props) {
  2. return (
  3. <div className='colorBox' style={{ backgroundColor: props.color }}></div>
  4. )
  5. }
  6.  
  7. function ColorCode (props) {
  8. return (
  9. <div className='colorText'> Color :-{props.color}</div>
  10. )
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement