Some tips I doing for learning English. Keep cool when someone said you pronoun wrong a word. Listen, smile, and try to pronoun correct if...
function ParentComponent() { const handleClick = () => { // logic } return ( <ChildComponent onClick={handleClick} /> ) } What...
Currently, I have 5 projects in javascript and I saw a problem with code sharing. A user-facing project written in Nextjs. An admin project write in...
Recently I have a business requirement: Have a template (a template is an array of fields, each field defines: type, min-length, max-length, ...)....
We have code block like: function ParentComponent(props) { return ( <ChildComponent style={{ color: 'red' }} /> ) } What performance with the...
I have a database in sqlite3 and now I want to move data to Postgres, here are the steps I did: Create all table in sqlite3 to Postgres Run sqlite3...