Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created November 3, 2019 13:56
Show Gist options
  • Save sabesansathananthan/6403ae7eb4e6d085fe8485a1bda31185 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/6403ae7eb4e6d085fe8485a1bda31185 to your computer and use it in GitHub Desktop.
React functional Component React Best Practice
import React from 'react';
export default function Button({ children, color, onClick }) {
return (
<button onClick={onClick} className={`Btn ${color}`}>
{children}
</button>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment