Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 614 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 614 Bytes

Learn Final Form

What is it?

What does it sound like (WDISL)?

How do I set it up

  • 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!