Module not found: Can't resolve 'final-form' in '/app/node_modules/react-final-form/dist'

Viewed 3386

./node_modules/react-final-form/dist/react-final-form.es.js

Module not found: Can't resolve 'final-form' in '/app/node_modules/react-final-form/dist'

2 Answers
  1. Make sure you have installed the library
yarn add final-form react-final-form
  1. And then you could import it like this.
import { Form, Field } from 'react-final-form'

Reinstall final form using npm install --save final-form react-final-form

Related