Breaking our app utilities and UI components into files brings modularity to our project. This helps us keep code organized in separate, reusable files, which improves code maintainability. Each file in the module system exposes its API to the public by using the exports or export keyword. Then, we can reference them by using the require or import keyword. Any file that we import or require become

