Styling the components

Styling is the very fundamental requirement of any website. Without styles, your website looks ugly. And React application is no exception. In React, there are different ways we can apply styles to components. In Next.js: _app.tsx Next.js is the React Framework for the Web by Vercel. The _app.tsx is the root component where we can […]

Components and JSX

In React, Components are the basic build blocks, one of the core concepts. We build user interfaces (UI) through components. React lets us combine the markup, CSS, and JavaScript into custom “components,” reusable UI elements for your app. Similar to HTML tags, you can use components like the following to design the pages. A React […]