1,5 Milliarden
140 Millionen
76 Millionen
Quelle: http://chrisharrington.github.io/demos/performance/
const element = (
<h1 className="greeting">
Hello, world!
</h1>
);
const element = React.createElement(
"h1",
{className: "greeting"},
"Hello, world!"
);
function reducer(state, action) {
switch (action.type) {
case EXAMPLE_ACTION:
return state.set("example", action.payload);
default:
return state;
}
}