Can unnecessary React.Fragment be poor in performance?

Recently, I found that our company’s code performance is poor. As I reviewed code, there’s so many code like this:

condition ? <SomeComponent /> : <></>

They use Fragment as replacement of null. Can this code occur performance problem?