Jonghan's learning path

Today I Learned as a developer

Recent posts

React: Refactor code

less than 1 minute read

This is from counter app. render() { let classes = "bg m-2 bg-"; classes += this.state.count === 0 ? "warning" : "primary"; return ( &...

React: Apply CSS

1 minute read

This posting will show you how to apply CSS in two ways, and this is what I learned applying CSS in react project so far. There are two ways more, but these ...

React: Using components

less than 1 minute read

This posting is going to explain how to use components in React.

React: Count app

2 minute read

This is the project using react I want to learn. The purpose of the project is getting familiar with react and learning how to use react features on the proj...