El espacio de nombres React no tiene miembro de exportación FC

First check if your file has a "tsx" extension or not, if not add it .
//(First way)
npm install @types/react@latest --save-dev

//(Second way)
npm i @types/react@latest --save
delete node_modules
delete yarn.lock
then run
npm install or (yarn install)
Joyous Jackal