Handling events with React elements is very similar to handling events on DOM elements. There are some syntax differences: React events are named using camelCase, rather than lowercase. With JSX you pass a function as the event handler, rather than a string. For example, the HTML: is slightly different in React: Another difference is that… Continue reading Handling Events
Category: Uncategorized
Nx Nrwl Review
What is Nx? Nx is a Monorepo pattern and built by Nrwl. Is available through the Angular CLI. All Angular apps will live within the singular Angular Application Workspace. Why? Large Enterprise Apps, consistency, community standardization and patterns. Consider to be a robust why for developing applications. Setup Run the following command to create a… Continue reading Nx Nrwl Review
Create WordPress Child Theme
Create a new folder inside your theme directory. Naming the usual practice when creating a child theme is to give its folder the same name as the parent theme appended with -child. That way, anyone knows immediately that this is the child of an existing theme. Create the new style sheet. This is the file that… Continue reading Create WordPress Child Theme
Introduction to Node.js
Node.js is an open-source and cross-platform JavaScript runtime environment. It is a popular tool for almost any kind of project!