reactjs|June 25, 2020|2 min read

ReactJS - 3 ways to Import components in ReactJS

TL;DR

Import React components using default export with any name, named exports with curly braces, or directory index files to organize and include components in your project.

ReactJS - 3 ways to Import components in ReactJS

Introduction

In this post, we will discuss 3 different ways to import a component in ReactJS. This post is not about concept of components in general. But, this post is to show how we can include or import different components.

Example folder structure:

/src
  App.js
  App.css
  ...
  /components
    /Movie
    /MovieList
    /Footer

In this post, We are concerned with three components:

  • Movie
  • MovieList
  • Footer

We will see 3 different ways to import this three components.

Way-1 By exact name of JS file

This is the simplest of the ways and you probably knew about this. The folder structure. We will see component: Movie

/src
  App.js
  App.css
  ...
  /components
    /Movie
      /Movie.js
    /MovieList
    /Footer

Assumming you are importing Movie component in App.js.

import React, {Component} from 'react';
import './App.scss';
import Movie from './components/Movie/Movie';

class App extends Component {
    render() {
        return <React.Fragment>
            <Movie />
        </React.Fragment>
    }
}

// module.exports = App;
export default App;

Here, we are just refering Movie component to its exact filename:

Way-2 By naming our component as index.js

In your respective component folder, you need to name your js file as index.js The folder structure. We will see component: MovieList

/src
  App.js
  App.css
  ...
  /components
    /Movie
    /MovieList
      /index.js
    /Footer

Assumming you are importing MovieList component in App.js.

import React, {Component} from 'react';
import './App.scss';
import MovieList from './components/MovieList';

class App extends Component {
    render() {
        return <React.Fragment>
            <MovieList />
        </React.Fragment>
    }
}

// module.exports = App;
export default App;

Note that we did not refer full path till the component js file. Rather we have refered folder path. And index.js is implicitly included.

Way-3 By specifying your component filename in special package.json

Name your component the name you want. Say: Footer.js Create a special file under component’s respective folder: package.json with following content:

package.json

{
    "main": "Footer.js"
}

The folder structure. We will see component: Footer

/src
  App.js
  App.css
  ...
  /components
    /Movie
    /MovieList
    /Footer
      /paackage.json
      /Footer.js

Assumming you are importing Footer component in App.js.

import React, {Component} from 'react';
import './App.scss';
import Footer from './components/Footer';

class App extends Component {
    render() {
        return <React.Fragment>
            <Footer />
        </React.Fragment>
    }
}

// module.exports = App;
export default App;

Here, we are just refering Footer component upto its folder name. And, presence of package.json file make ReactJS system understand which js file to include from this folder.

This ends our three ways to include components. I hope you learnt something new.

Related Posts

ReactJS - Understanding SetState Asynchronous Behavior and How to correctly use it

ReactJS - Understanding SetState Asynchronous Behavior and How to correctly use it

ReactJS setState is Asynchronous setState() method in ReactJS class components…

ReactJS - How to restrict data type for different kind of data

ReactJS - How to restrict data type for different kind of data

Introduction Javascript is not a strict type language. We can use a variable to…

ReactJS - Basic Form Handling and Form submission

ReactJS - Basic Form Handling and Form submission

Introduction Lets take a look at how forms are being handled in ReactJS. We will…

ReactJS - How to create ReactJS components

ReactJS - How to create ReactJS components

Introduction In this post, we will talk about basic of how to create components…

ReactJS - How to pass method to component and how to pass arguments to method

ReactJS - How to pass method to component and how to pass arguments to method

Introduction In the ReactJS project, you are having aa parent component and a…

ReactJS - How to use conditionals in render JSX

ReactJS - How to use conditionals in render JSX

Introduction In this post, I will show several ways to use conditionals while…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…