├── .gitignore ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── src ├── App.tsx ├── components │ └── Form │ │ ├── ErrorMessage.tsx │ │ ├── Field.tsx │ │ ├── Input.tsx │ │ ├── Label.tsx │ │ └── index.tsx ├── lib │ └── supabase.ts ├── main.tsx ├── styles │ └── global.css └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/.gitignore -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Form/ErrorMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/components/Form/ErrorMessage.tsx -------------------------------------------------------------------------------- /src/components/Form/Field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/components/Form/Field.tsx -------------------------------------------------------------------------------- /src/components/Form/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/components/Form/Input.tsx -------------------------------------------------------------------------------- /src/components/Form/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/components/Form/Label.tsx -------------------------------------------------------------------------------- /src/components/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/components/Form/index.tsx -------------------------------------------------------------------------------- /src/lib/supabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/lib/supabase.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocketseat-content/forms-react/HEAD/vite.config.ts --------------------------------------------------------------------------------