'React' must be in scope when using JSX

这是因为没有引入React的原因,在最顶端加上

import React from 'react';

即可。