Giter Club home page Giter Club logo

reactjs-coursera's Introduction

ReactJS-Coursera

Configure your React Project to use Reactstrap :

To configure your project to use reactstrap, type the following at the prompt to install reactstrap, and Bootstrap 4:
  yarn add [email protected]
  yarn add [email protected]
  yarn add [email protected]

Configure to use Bootstrap 4

Next, open index.js file in the src folder and add the following line into the imports:
import 'bootstrap/dist/css/bootstrap.min.css';

Adding a Navigation Bar:

Open App.js in the src folder and update it as follows:
import { Navbar, NavbarBrand } from 'reactstrap';

    class App extends Component {
      render() {
        return (
          <div className="App">
            <Navbar dark color="primary">
              <div className="container">
                <NavbarBrand href="/">Ristorante Con Fusion</NavbarBrand>
              </div>
            </Navbar>
          </div>
        );
      }
    }

React Components:

   1. React components returns a set of react elements that should appear on teh screen
   2. React Components enables to split the UI into independent, resuable pieces.
   3. We can also pass values to components.

Conventions of React components.

  1. User defined components should start with Caps. These compile to React.createElement(..)
  2. Tags starting with lower case are treated as DOM components.

reactjs-coursera's People

Contributors

vathirajan avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.