Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
react-todo-app
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ajmal.S
react-todo-app
Commits
4fffcd8d
Commit
4fffcd8d
authored
Feb 23, 2022
by
Moorthy G
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add proptypes to todoform
parent
8e390a37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
20 deletions
+23
-20
TodoForm.js
src/components/TodoForm.js
+23
-20
No files found.
src/components/TodoForm.js
View file @
4fffcd8d
import
React
,
{
useState
}
from
"react"
;
import
PropTypes
from
'prop-types'
;
import
React
,
{
useState
}
from
'react'
;
function
TodoForm
(
props
)
{
const
[
input
,
setInput
]
=
useState
(
""
);
const
[
input
,
setInput
]
=
useState
(
''
);
const
onChange
=
(
e
)
=>
{
setInput
(
e
.
target
.
value
);
...
...
@@ -10,31 +10,34 @@ function TodoForm(props) {
const
Submit
=
(
e
)
=>
{
e
.
preventDefault
();
props
.
onSubmit
({
id
:
Math
.
floor
(
Math
.
random
()
*
10000
),
text
:
input
,
status
:
false
status
:
false
,
});
setInput
(
""
);
setInput
(
''
);
};
return
(
<>
<
form
onSubmit
=
{
Submit
}
>
<
div
className
=
"add-form"
>
<
div
className
=
'form-control'
>
<
input
placeholder
=
"Enter Item"
value
=
{
input
}
onChange
=
{
onChange
}
name
=
"text"
/>
<
/div
>
<
button
className
=
"btn"
onClick
=
{
Submit
}
>
Submit
<
/button
>
<
form
onSubmit
=
{
Submit
}
>
<
div
className
=
'add-form'
>
<
div
className
=
'form-control'
>
<
input
placeholder
=
'Enter Item'
value
=
{
input
}
onChange
=
{
onChange
}
name
=
'text'
/>
<
/div
>
<
/form
>
<
/
>
<
button
className
=
'btn'
onClick
=
{
Submit
}
>
Submit
<
/button
>
<
/div
>
<
/form
>
);
}
export
default
TodoForm
;
TodoForm
.
propTypes
=
{
onSubmit
:
PropTypes
.
func
,
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment