React - How to export a pure stateless component

前端 未结 4 1277
臣服心动
臣服心动 2021-01-31 00:58

How can I export a stateless pure dumb component?

If I use class this works:

import React, { Component } from \'react\';

export default class Header ext         


        
4条回答
  •  猫巷女王i
    2021-01-31 01:39

    Just as a side note. You could technically export default without declaring a variable first.

    export default () => (
      
    Header
    )

提交回复
热议问题