--- id: quick-start title: Quick Start --- The bare minimum to get started with TanStack Form is to create a form and add a field. Keep in mind that this example does not include any validation or error handling... yet. ```tsx import React from 'react' import ReactDOM from 'react-dom/client' import { useForm } from '@tanstack/react-form' export default function App() { const form = useForm({ // Memoize your default values to prevent re-renders defaultValues: { fullName: '', }, onSubmit: async (values) => { // Do something with form data console.log(values) }, }) return (