autofocusautofocus is a plugin for focusing the field. Sometimes the built-in autofocus wont focus a field for whatever reason.# Snippetimport { render } from 'pota'import 'pota/plugin/autofocus'function App() { return ( <main> <section> <input name="name" autofocus /> </section> </main> )}render(App)