What does it sound like (WDISL)?
- Create a project direction
mkdir learn-final-form-broh && cd learn-final-form-broh
- Initialize it as an NPM project
npm init -y
- Install some deps (including final form and a bundler)
npm i --save-dev webpack-cli
npm i --save final-form
- Create the following
- An entrypoint file for webpack src/index.js
- A dist directory with an index.html which looks for a main.js in the same directory
- A compile script (
webpack
) in your package.json
- Write your code!