What does “export default” do in JSX?

后端 未结 5 1729
心在旅途
心在旅途 2020-12-07 07:42

I want to ask what the last sentence means and does (export default HelloWorld;) but I can\'t find any tutorials about it.

// hello-world.jsx

import React f         


        
5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-07 08:15

    In simple word export means letting the script we wrote to be used by another script. If we say export, we mean any module can use this script by importing it.

提交回复
热议问题