
Tech Revolvers

Hosting apps/websites on internet is an important part when it comes to show casing your work or may be deploying your app for a small scale work. Github provides hosting for the websites for free using Github pages where anyone can deploy the webpages. Coming on to the todays topic : Hosting react app on… Read more

<p class="has-drop-cap" value="<amp-fit-text layout="fixed-height" min-font-size="6" max-font-size="72" height="80">A fragment is a common pattern in React which is used to return multiple elements. A fragment is a common pattern in React which is used to return multiple elements. Since in react we have to group jsx under a some parent. Fragments let us group a list of… Read more

We all are good with flex boxes and all. Lets have a case when we have a box of width something say; 300px, now adding 3 div inside this such that the middle text can be very long. So for this we will be using ellipsis as text-overflow. So, taking all this in mind. Lets… Read more

React Loadable is used for Splitting the Code by Components and Routes. HOW? Code splitting is a technique which is being used with modern web app development that allows to load chunks of code only when needed. These days we are creating more complex web apps. Challenge these days is not about the designs or style. Target… Read more
![Deploying React app(Web) on Firebase [Tutorial]](https://additionalknowledge.com/wp-content/uploads/2020/06/screenshot-2020-06-23-at-11.20.04-pm-1.png?w=1024)
Lets directly dive in, without talking what is react? or what is firebase? If you guys want to know about that then feel free to add in the comments section, will surely pick the topics. Let’s begin. To create a react app, the first command to run is the npx create-react-app .Now, after creating the… Read more

What is react router? Why is react router used? A easy demonstration React-Router => React Router is a routing library for React which keeps the UI or user interface of the website in sync with the URL. So if we hit a url say “/home”. How will react or js will come to know what… Read more