Posts

Showing posts from April, 2025

Quotes by JK

Image
A Classical Reflection on Mental Purity and Creativity In order to create something exceptional you need to be virgin, mentally. True creativity is not always born from knowledge, but from the absence of noise — a mind that is clear, untouched, and uninfluenced. This mental virginity is a sacred space, a return to innocence where originality finds its voice. To create exceptionally, sometimes we must unlearn what the world has taught us.

REACT

Image
Component-   React element is the smallest building block of React application. It is just a plain object that tells React what we want to see on the screen. React components are built using React elements. createElement-  import { createElement } from "react"; const REACT_ELEMENT = createElement(type, props, ...children) lets say- <h1 class="chapter-title">Hello World!</h1>. will look like  below- const GREETINGS = createElement("h1", { className: "chapter-title" }, "Hello World!"); To avoid this kind of boilerplate code, React introduced a custom syntax for JavaScript, named JavaScript XML. With JSX, we can write HTML-like markup inside a JavaScript file.React converts these JSX tags into React elements by replacing them with  createElement  calls. Such conversions of source code from one format to another are termed as  Transpiling . the above converts into-  const GREETINGS = (   <h1 className="chapter-title...