Skip to content

Instantly share code, notes, and snippets.

@arshmakker
Last active April 13, 2020 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arshmakker/16355dd5a02b8b689e57d9c4d0f4e937 to your computer and use it in GitHub Desktop.
Save arshmakker/16355dd5a02b8b689e57d9c4d0f4e937 to your computer and use it in GitHub Desktop.
React atom sample
import React from 'react'
function Button({
classButton= "",
title= "Press Me",
}) {
return (
<button className={classButton}>{title}</button>
)
}
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment