02Geek HTML5 and JavaScript, TypeScript, React, Flash, ActionScript online School
Previous VideoPrevious Video

Creating a Component

Tutorial: Creating a Component

In this tutorial, you’ll learn how to create a React component using ES6 and JSX. React components are the building blocks of modern UI development, enabling reusable and modular design. By the end of this lesson, you’ll have built your first React component and integrated it into your project.


What You Will Learn

  1. Setting up a new component file in your project.
  2. Creating a React component using ES6 class syntax.
  3. Importing and rendering the component.
  4. Fixing common issues like invalid JSX and reserved keywords.

Creating Your First Component

  1. Set Up a Component Folder

    • Create a components folder inside your src directory.
    • Add a new file named Portfolio.js to house your component.
  2. Write the Component
    Open Portfolio.js and start defining your component:

    import React from 'react';
    
    class Portfolio extends React.Component {
      render() {
        return (
          <div className="portfolio">
            <h1>My Portfolio</h1>
            <p>This is a placeholder for portfolio content.</p>
          </div>
        );
      }
    }
    
    export default Portfolio;
    

    Key Points:

    • Use the class keyword to create a component.
    • Extend React.Component to inherit React functionality.
    • The render() method must return JSX.

Importing and Rendering the Component

  1. Import the Component
    Open your main client file (e.g., index.js or App.js) and import the new component:

    import React from 'react';
    import ReactDOM from 'react-dom';
    import Portfolio from './components/Portfolio';
    
    ReactDOM.render(
      <Portfolio />,
      document.getElementById('root')
    );
    
  2. Run Your Application
    Start your development server:

    npm start
    

    Open the application in your browser to see your Portfolio component rendered on the page.


Common Issues and Fixes

1. Invalid JSX

JSX syntax requires all elements to be properly closed.

  • Self-closing tags like <img /> or <hr /> must include a /.

2. Reserved Keywords

The keyword class is reserved in JavaScript. Use className instead for JSX:

<div className="portfolio"></div>

3. Exporting Components

Ensure your component is exported using export default. Without this, your component cannot be imported elsewhere.


Refactoring HTML to JSX

If you’re moving HTML into JSX, ensure:

  • All tags are closed properly.
  • Reserved keywords like class are replaced with className.
  • Inline styles are converted to JavaScript objects:
    <div style={{ color: 'blue', fontSize: '14px' }}>Text</div>
    

Summary

Congratulations! You’ve created your first React component using ES6 and JSX. This foundational step sets the stage for building more complex and reusable components.

In the next lecture, we’ll explore additional React features to enhance your components and workflows.

Setting Things Up

Learn how to set up your development environment for mastering React reusable components, including Node.js, NPM, and Webpack configuration.

10:54

Configuring the Webpack Development Server

Learn to configure the Webpack Development Server for hot module replacement and automated workflows in React.

08:06

Hello JSX

Learn JSX, the JavaScript XML extension that simplifies React development. Set up JSX in Babel and explore its syntax and integration with React.

09:12

Creating a Component

Dive into React development by creating your first JSX component! In this lecture, you'll learn how to define an ES6 class, extend React components, and integrate JSX to build reusable React elements.

08:33

Developing in ES2016 Today with Babel

Learn how to configure Babel and Webpack to develop modern JavaScript applications using ES6 features. This lecture explains setting up Babel with the ES2015 preset.

09:46