From a59a1dde156b283f058e2306aca9098c0ad81b60 Mon Sep 17 00:00:00 2001 From: Mayank Walia <86161735+mayankwalia@users.noreply.github.com> Date: Sun, 11 Sep 2022 11:29:30 +0530 Subject: [PATCH] Fixed typo "commonts" to "comments" --- 12_Day_Forms/12_forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/12_Day_Forms/12_forms.md b/12_Day_Forms/12_forms.md index c9b5978..abe4f94 100644 --- a/12_Day_Forms/12_forms.md +++ b/12_Day_Forms/12_forms.md @@ -137,7 +137,7 @@ We usually use form to handle user information. Let us move to form section and ## Getting multiple input data from form -In this section we will develop a small form which collect user information. Our user is a student. We use a parent form element and certain number of input elements to collect user information. In addition to that we will have event listener for the form (onSubmit) and for the inputs (onChange). See the following example try to see the commonts too. You can also check the live [demo](https://codepen.io/Asabeneh/full/eYNvJda). +In this section we will develop a small form which collect user information. Our user is a student. We use a parent form element and certain number of input elements to collect user information. In addition to that we will have event listener for the form (onSubmit) and for the inputs (onChange). See the following example try to see the comments too. You can also check the live [demo](https://codepen.io/Asabeneh/full/eYNvJda). ```js import React, { Component } from 'react'