Salesforce’s LWC (Lightning Web Components) – My First Thoughts

Salesforce’s LWC (Lightning Web Components) – My First Thoughts

Oh no, another JavaScript framework to learn. At first, it sounds bad. But its a good thing actually. Because being stagnant in coding is bad. Always learning new things is the way to go. Besides, newer frameworks (especially in JavaScript) show what older frameworks could’ve done better. This is the case with Lightning Web Components […]

Easy Comments Area for the Single page – using Next.js

Easy Comments Area for the Single page – using Next.js

Now that we’ve got our basic single component (named [slug].js), which displays a single post, let’s look at how easy it is to add the comments area. First, let’s build 2 components: 1) CommentList.js and 2) CommentForm.js. In Next.js, when creating components that doesn’t use a route – we place them in the “components” directory. […]