Answers for "whats react"

40

what is reactjs

React is a declarative, efficient, and flexible JavaScript library for
building user interfaces or UI components. It lets you compose complex UIs
from small and isolated pieces of code called “components”.

It is used by large, established companies and newly-minted startups 
alike (Netflix, Airbnb, Instagram, and the New York Times, to name a few). 
React brings many advantages to the table, making it a better choice 
than other frameworks like Angular.js.
Posted by: Guest on June-21-2021
2

what is react

step : 1 // First install  firebase-tools
npm install firebase-tools -g

step : 2 // login in your gmail account and then create one project.

step : 3 // Then go to your project directory 
firebase login // enter details 

step : 4 
npm run build

step : 5
firebase init

// ? What do you want to use as your public directory? build
// ? Configure as a single-page app (rewrite all urls to /index.html)? Yes
// ? Set up automatic builds and deploys with GitHub? No
// ? File build/index.html already exists. Overwrite? No

step : 6 // your project is now deployed 
firebase deploy

step : 7 
// go to firebase account 
// select your project 
// goto Hoisting
Posted by: Guest on August-01-2021
6

react.js

class ShoppingList extends React.Component {
  render() {
    return (
      <div className="shopping-list">
        <h1>Shopping List for {this.props.name}</h1>
        <ul>
          <li>Instagram</li>
          <li>WhatsApp</li>
          <li>Oculus</li>
        </ul>
      </div>
    );
  }
}

// Example usage: <ShoppingList name="Mark" />
Posted by: Guest on April-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language