useRef() - useRef returns a mutable ref object whose .current property is initialized to the passed argument (initialValue). The returned object will persist for the full lifetime of the component.
useRef() hook example to get an email and password from the login form.
Use Create React App local template from your template root folder
yarn create react-app demo --template file:.
Create React App local template folder structure and gitignore
README.md
template.json
package.json
template / README.md
gitignore // gitignore inside template folder should be without "." in front
public / index.html
src / index.js
How to create custom Create React App (CRA) templates
I created a step by step guide on how to create your own templates. Check it