DRDev Runnerindevrunner.hashnode.dev·Mar 12, 2023 · 4 min readReact notes - 04 Component BasicsLet’s start with visualization: JSX JSX is a syntax extension for JavaScript used in React that allows you to write HTML-like code in your JavaScript code. It stands for "JavaScript XML" because it lets you create XML-like structures in your code. I...00
DRDev Runnerindevrunner.hashnode.dev·Mar 12, 2023 · 2 min readReact notes - 03 ComponentsThis is brief visualization of the chapter about components: In React, a component is a building block of the user interface. It can be a function or a class that receives inputs called props and returns a hierarchy of views that represent the UI. I...00
DRDev Runnerindevrunner.hashnode.dev·Mar 12, 2023 · 1 min readReact notes - 02 Let’s run our applicationSo, we install our app, and now let’s run it. As I mentioned before, I will use Vite for development, so let’s run these commands in our terminal: // change directory into project that you created, // in my case this is 'my-app' cd my-app // for ins...00
DRDev Runnerindevrunner.hashnode.dev·Mar 12, 2023 · 2 min readReact notes - 01 CLI ToolsLet’s begin with the basics. To create React application we can use two options Create React App and Vite With Vite your application will be created faster Vite and Create React App are both popular tools for setting up React projects quickly and eas...00
DRDev Runnerindevrunner.hashnode.dev·Mar 9, 2023 · 1 min readThis would be a first postThis blog would be my notes for me for the feature use in my work, to track my growth process and to check my skillset. Also, I will write some posts on general themes about work in IT. But of course, if for someone my posts will be useful I will be ...00