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 - 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 - 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 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

Deep Dive on Elasticsearch: A System Design Interview Perspective

Deep Dive on Elasticsearch: A System Design Interview Perspective

“If you’re searching, filtering, or aggregating over large volumes of semi…

Deep Dive on Apache Kafka: A System Design Interview Perspective

Deep Dive on Apache Kafka: A System Design Interview Perspective

“Kafka is not a message queue. It’s a distributed commit log that happens to be…

Deep Dive on Redis: Architecture, Data Structures, and Production Usage

Deep Dive on Redis: Architecture, Data Structures, and Production Usage

“Redis is not just a cache. It’s a data structure server that happens to be…

Deep Dive on API Gateway: A System Design Interview Perspective

Deep Dive on API Gateway: A System Design Interview Perspective

“An API Gateway is the front door to your microservices. Every request walks…

REST API Design: Pagination, Versioning, and Best Practices

REST API Design: Pagination, Versioning, and Best Practices

Every time two systems need to talk, someone has to design the contract between…

Efficient Data Modelling: A Practical Guide for Production Systems

Efficient Data Modelling: A Practical Guide for Production Systems

Most engineers learn data modelling backwards. They draw an ER diagram…