...

/

Modularity & Import/Export in React

Modularity & Import/Export in React

This lesson explains how modules are created and accessed in JavaScript.

What are Modules?

It is always recommended to define only one class per file to make it strongly cohesive. These files are basically modules. So, if there are two classes Person and Student defined in the same file, you can split them into two modules and name them as Person.js and Student.js. Note that you must place these files inside your App directory.

Did you know? The classes defined in modules are private by default and can ...