Skip to content

Instantly share code, notes, and snippets.

View luillyfe's full-sized avatar
💭
Improving

Fermin Blanco luillyfe

💭
Improving
View GitHub Profile
@luillyfe
luillyfe / app.jsx
Last active November 7, 2018 11:15
React: Props are immutable!
const News = props => {
const changeTitle = () => {
// Since props are read-only, you are not allowed to do so
props.changeTitle("Title changed!");
};
return (
<div>
<h1>{props.title}</h1>
<div>{props.content}</div>
<button onClick={changeTitle}>Mutate!</button>