Search code examples
reactjsreact-fullstack

import React, from { useState } 'react'; not working


how to solve the problem, any idea form anyone?

enter image description here

enter image description here

enter image description here

enter image description here


Solution

  • The problem lies in the import React, from { useState } 'react'.

    There is a typo here, since you are using useState you should import it like this:

    import React, { useState } from 'react';