Up and running
Lee Blazek
Demo project
React, Angular, JS, Mean Stack, Front-end, Node api's, with a side of iOS
SME Javascript
Started development in 2003 ~ 17 years
Full-stack JS since 2013 ~ 7 years
Since Angular v 0.8
node 0.x
Please city, country, and a short description of your job/career/level in chat.
(sorry there's to many people to go thru all in call)
import React, { useState } from 'react';
function Example() {
// Declare a new state variable, which we'll call "count"
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
import React, { useState, useEffect } from 'react';
function Example() {
const [count, setCount] = useState(0);
// Similar to componentDidMount and componentDidUpdate:
useEffect(() => {
// Update the document title using the browser API
document.title = `You clicked ${count} times`;
});
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
seminars
conferences
training
consulting
projects
https://www.linkedin.com/company/berzerk-io/
SME Javascript, Angular, React, Vue, NodeJS, all things in the browser